diff --git a/src/ResourceManager/Reservations/Commands.Reservations.Test/Commands.Reservations.Test.csproj b/src/ResourceManager/Reservations/Commands.Reservations.Test/Commands.Reservations.Test.csproj
index fddfce87553f..ad80bdf1deb1 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations.Test/Commands.Reservations.Test.csproj
+++ b/src/ResourceManager/Reservations/Commands.Reservations.Test/Commands.Reservations.Test.csproj
@@ -32,7 +32,7 @@
- ..\..\..\packages\Microsoft.Azure.Management.Reservations.1.8.0-preview\lib\net452\Microsoft.Azure.Management.Reservations.dll
+ ..\..\..\packages\Microsoft.Azure.Management.Reservations.1.9.0-preview\lib\net452\Microsoft.Azure.Management.Reservations.dll
diff --git a/src/ResourceManager/Reservations/Commands.Reservations.Test/ScenarioTests/ReservationTests.ps1 b/src/ResourceManager/Reservations/Commands.Reservations.Test/ScenarioTests/ReservationTests.ps1
index 7c8ef1d3f89e..99485138a0c1 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations.Test/ScenarioTests/ReservationTests.ps1
+++ b/src/ResourceManager/Reservations/Commands.Reservations.Test/ScenarioTests/ReservationTests.ps1
@@ -55,6 +55,16 @@ function Test-GetCatalog
Assert-True { $item.Terms.Count -gt 0 }
Assert-True { $item.Locations.Count -gt 0 }
}
+
+ # Get CosmosDb catalog
+ $catalog = Get-AzureRmReservationCatalog -SubscriptionId $subscriptionId -ReservedResourceType CosmosDb -Location westus
+ Foreach ($item in $catalog)
+ {
+ Assert-NotNull $item.ResourceType
+ Assert-NotNull $item.Name
+ Assert-True { $item.Terms.Count -gt 0 }
+ Assert-True { $item.Locations.Count -gt 0 }
+ }
}
<#
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/GetCatalog.cs b/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/GetCatalog.cs
index e0b969cef1b8..c38bf44ea739 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/GetCatalog.cs
+++ b/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/GetCatalog.cs
@@ -17,7 +17,7 @@ public class GetCatalog : AzureReservationsCmdletBase
public Guid SubscriptionId { get; set; }
[Parameter(Mandatory = true)]
- [PSArgumentCompleter("VirtualMachines", "SqlDatabases", "SuseLinux")]
+ [PSArgumentCompleter("VirtualMachines", "SqlDatabases", "SuseLinux", "CosmosDb")]
[ValidateNotNullOrEmpty]
public string ReservedResourceType { get; set; }
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/PatchReservation.cs b/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/PatchReservation.cs
index 31a52d009548..34bf3d83b945 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/PatchReservation.cs
+++ b/src/ResourceManager/Reservations/Commands.Reservations/Cmdlets/PatchReservation.cs
@@ -43,6 +43,10 @@ public class PatchReservation : AzureReservationsCmdletBase
[ValidateNotNullOrEmpty]
public string InstanceFlexibility { get; set; }
+ [Parameter(Mandatory = false)]
+ [ValidateNotNull]
+ public string Name { get; set; }
+
[Parameter(ParameterSetName = Constants.ParameterSetNames.ObjectParameterSet,
Mandatory = true,
ValueFromPipeline = true)]
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/Commands.Reservations.csproj b/src/ResourceManager/Reservations/Commands.Reservations/Commands.Reservations.csproj
index f0bc2915e960..9b4f494e1aed 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/Commands.Reservations.csproj
+++ b/src/ResourceManager/Reservations/Commands.Reservations/Commands.Reservations.csproj
@@ -37,7 +37,7 @@
- ..\..\..\packages\Microsoft.Azure.Management.Reservations.1.8.0-preview\lib\net452\Microsoft.Azure.Management.Reservations.dll
+ ..\..\..\packages\Microsoft.Azure.Management.Reservations.1.9.0-preview\lib\net452\Microsoft.Azure.Management.Reservations.dll
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservation.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservation.md
index 6f884b7a47b7..328ffb33d29e 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservation.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservation.md
@@ -55,7 +55,7 @@ Get specific `Reservation` details.
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -70,7 +70,7 @@ Accept wildcard characters: False
Id of the `Reservation` to look at
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -85,7 +85,7 @@ Accept wildcard characters: False
Pipe object parameter for `ReservationOrder`
```yaml
-Type: Microsoft.Azure.Commands.Reservations.Models.PSReservationOrder
+Type: PSReservationOrder
Parameter Sets: PipeObject
Aliases:
@@ -100,7 +100,7 @@ Accept wildcard characters: False
Id of the `ReservationOrder` that contains the `Reservation`. Required.
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -115,7 +115,7 @@ Accept wildcard characters: False
Pipe object parameter for `ReservationOrder`
```yaml
-Type: Microsoft.Azure.Commands.Reservations.Models.PSReservationOrderPage
+Type: PSReservationOrderPage
Parameter Sets: PagePipeObject
Aliases:
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationCatalog.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationCatalog.md
index 90c39be9eaf9..5a0a4ecbab68 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationCatalog.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationCatalog.md
@@ -42,7 +42,7 @@ Get the SuseLinux catalog for the specified subscription
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
Specifies the location of the reserved resources in the catalog
```yaml
-Type: System.String
+Type: String
Parameter Sets: (All)
Aliases:
@@ -72,7 +72,7 @@ Accept wildcard characters: False
Specifies the type of the reserved resources in the catalog
```yaml
-Type: System.String
+Type: String
Parameter Sets: (All)
Aliases:
@@ -87,7 +87,7 @@ Accept wildcard characters: False
Id of the subscription
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: (All)
Aliases:
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationHistory.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationHistory.md
index f84facaf4c9b..67c114fd8a27 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationHistory.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationHistory.md
@@ -42,7 +42,7 @@ Get the revision history of the specific reservation
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
Pipe object parameter for `Reservation`s
```yaml
-Type: Microsoft.Azure.Commands.Reservations.Models.PSReservation
+Type: PSReservation
Parameter Sets: PipeObject
Aliases:
@@ -72,7 +72,7 @@ Accept wildcard characters: False
ReservationId of the `Reservation` of which history is to be shown
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -87,7 +87,7 @@ Accept wildcard characters: False
ReservationOrderId for the `ReservationOrder` that contains the `Reservation`
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrder.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrder.md
index 0a613b2718b2..4af92f045399 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrder.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrder.md
@@ -42,7 +42,7 @@ Get `ReservationOrder` with the specified ReservationOrderId
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
Id of the specific ReservationOrder that user wants to see
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: (All)
Aliases:
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrderId.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrderId.md
index 616a0e502ada..9fb912f32570 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrderId.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Get-AzureRmReservationOrderId.md
@@ -42,7 +42,7 @@ Get applied `ReservationOrder` for specified subscription
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
Id of the subscription to get the applied `ReservationOrder`s
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: (All)
Aliases:
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Merge-AzureRmReservation.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Merge-AzureRmReservation.md
index 3c1fd0899f42..3e97ec71b0ff 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Merge-AzureRmReservation.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Merge-AzureRmReservation.md
@@ -42,7 +42,7 @@ Merge the two specified `Reservation`s into one `Reservation`
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
Comma-separated strings of two ReservationIds to merge
```yaml
-Type: Microsoft.Azure.Commands.Reservations.Models.PSReservation[]
+Type: PSReservation[]
Parameter Sets: PipeObject
Aliases:
@@ -72,7 +72,7 @@ Accept wildcard characters: False
ReservationOrderId for the `ReservationOrder` that contains the two `Reservation`s
```yaml
-Type: System.Guid[]
+Type: Guid[]
Parameter Sets: CommandLine
Aliases:
@@ -87,7 +87,7 @@ Accept wildcard characters: False
{{Fill ReservationOrderId Description}}
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -102,7 +102,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: System.Management.Automation.SwitchParameter
+Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -117,7 +117,7 @@ Accept wildcard characters: False
Shows what would happen if the cmdlet runs. The cmdlet is not run.
```yaml
-Type: System.Management.Automation.SwitchParameter
+Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Split-AzureRmReservation.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Split-AzureRmReservation.md
index 33a738013a9f..ceadd16279aa 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Split-AzureRmReservation.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Split-AzureRmReservation.md
@@ -42,7 +42,7 @@ Split the specified `Reservation` into two `Reservation`s with the corresponding
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
Comma-separated integers for quantity field of the two `Reservation`s
```yaml
-Type: System.Int32[]
+Type: Int32[]
Parameter Sets: (All)
Aliases:
@@ -72,7 +72,7 @@ Accept wildcard characters: False
Pipe object parameter for `Reservation`
```yaml
-Type: Microsoft.Azure.Commands.Reservations.Models.PSReservation
+Type: PSReservation
Parameter Sets: PipeObject
Aliases:
@@ -87,7 +87,7 @@ Accept wildcard characters: False
Id of the `Reservation` to split
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -102,7 +102,7 @@ Accept wildcard characters: False
Id of the `ReservationOrder` that contains the `Reservation` that user wants to split
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -117,7 +117,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: System.Management.Automation.SwitchParameter
+Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -132,7 +132,7 @@ Accept wildcard characters: False
Shows what would happen if the cmdlet runs. The cmdlet is not run.
```yaml
-Type: System.Management.Automation.SwitchParameter
+Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/help/Update-AzureRmReservation.md b/src/ResourceManager/Reservations/Commands.Reservations/help/Update-AzureRmReservation.md
index 0e05dd12c4ce..37dcbe91740e 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/help/Update-AzureRmReservation.md
+++ b/src/ResourceManager/Reservations/Commands.Reservations/help/Update-AzureRmReservation.md
@@ -15,14 +15,14 @@ Update a `Reservation`.
### CommandLine (Default)
```
Update-AzureRmReservation -ReservationOrderId -ReservationId -AppliedScopeType
- [-AppliedScope ] [-InstanceFlexibility ] [-DefaultProfile ] [-WhatIf]
- [-Confirm] []
+ [-AppliedScope ] [-InstanceFlexibility ] [-Name ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### PipeObject
```
Update-AzureRmReservation -AppliedScopeType [-AppliedScope ] [-InstanceFlexibility ]
- -Reservation [-DefaultProfile ] [-WhatIf] [-Confirm]
+ [-Name ] -Reservation [-DefaultProfile ] [-WhatIf] [-Confirm]
[]
```
@@ -51,7 +51,7 @@ Updates the AppliedScopeType of the specified `Reservation` to Shared and Instan
SubscriptionId for this `Reservation` to be applied
```yaml
-Type: System.String
+Type: String
Parameter Sets: (All)
Aliases:
@@ -66,7 +66,7 @@ Accept wildcard characters: False
Type of the Applied Scope
```yaml
-Type: System.String
+Type: String
Parameter Sets: (All)
Aliases:
@@ -81,7 +81,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer
+Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzureRmContext, AzureCredential
@@ -96,7 +96,22 @@ Accept wildcard characters: False
If present, updates the InstanceFlexibility value of the `Reservation`. If not specified, the existing value remains unchanged.
```yaml
-Type: System.String
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+{{Fill Name Description}}
+
+```yaml
+Type: String
Parameter Sets: (All)
Aliases:
@@ -111,7 +126,7 @@ Accept wildcard characters: False
Pipe object parameter for `Reservation`
```yaml
-Type: Microsoft.Azure.Commands.Reservations.Models.PSReservation
+Type: PSReservation
Parameter Sets: PipeObject
Aliases:
@@ -126,7 +141,7 @@ Accept wildcard characters: False
Id of the `Reservation` to update
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -141,7 +156,7 @@ Accept wildcard characters: False
Id of the `ReservationOrder` to update
```yaml
-Type: System.Guid
+Type: Guid
Parameter Sets: CommandLine
Aliases:
@@ -156,7 +171,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: System.Management.Automation.SwitchParameter
+Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -171,7 +186,7 @@ Accept wildcard characters: False
Shows what would happen if the cmdlet runs. The cmdlet is not run.
```yaml
-Type: System.Management.Automation.SwitchParameter
+Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/ResourceManager/Reservations/Commands.Reservations/packages.config b/src/ResourceManager/Reservations/Commands.Reservations/packages.config
index 0a1108e46882..21cd6017a7a4 100644
--- a/src/ResourceManager/Reservations/Commands.Reservations/packages.config
+++ b/src/ResourceManager/Reservations/Commands.Reservations/packages.config
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsPlatformImage.md b/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsPlatformImage.md
index ca026f0f16ff..3985fb6c7c51 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsPlatformImage.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsPlatformImage.md
@@ -32,83 +32,83 @@ Add a new platform image.
## PARAMETERS
-### -Publisher
-Name of the publisher.
+### -AsJob
+Run asynchronous as a job and return the job object.
```yaml
-Type: String
+Type: SwitchParameter
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 1
-Default value: None
+Required: False
+Position: Named
+Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Offer
-Name of the offer.
+### -BillingPartNumber
+The part number is used to bill for software costs.
```yaml
Type: String
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 2
+Required: False
+Position: 7
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Sku
-Name of the SKU.
+### -DataDisks
+Data disks used by the platform image.
```yaml
-Type: String
+Type: DataDisk[]
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 3
+Required: False
+Position: 8
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Version
-The version of the virtual machine platform image.
+### -Force
+Don't ask for confirmation.
```yaml
-Type: String
+Type: SwitchParameter
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 4
-Default value: None
+Required: False
+Position: Named
+Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
-### -OsType
-Operating system type.
+### -Location
+Location of the resource.
```yaml
-Type: Object
+Type: String
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 5
+Required: False
+Position: 9
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -OsUri
-Location of the disk.
+### -Offer
+Name of the offer.
```yaml
Type: String
@@ -116,95 +116,94 @@ Parameter Sets: (All)
Aliases:
Required: True
-Position: 6
+Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -BillingPartNumber
-The part number is used to bill for software costs.
+### -OsType
+Operating system type.
```yaml
-Type: String
+Type: Object
Parameter Sets: (All)
Aliases:
-Required: False
-Position: 7
+Required: True
+Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -DataDisks
-Data disks used by the platform image.
+### -OsUri
+Location of the disk.
```yaml
-Type: DataDisk[]
+Type: String
Parameter Sets: (All)
Aliases:
-Required: False
-Position: 8
+Required: True
+Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Location
-Location of the resource.
+### -Publisher
+Name of the publisher.
```yaml
Type: String
Parameter Sets: (All)
Aliases:
-Required: False
-Position: 9
+Required: True
+Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -AsJob
-Run asynchronous as a job and return the job object.
+### -Sku
+Name of the SKU.
```yaml
-Type: SwitchParameter
+Type: String
Parameter Sets: (All)
Aliases:
-Required: False
-Position: Named
-Default value: False
+Required: True
+Position: 3
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Force
-Don't ask for confirmation.
+### -Version
+The version of the virtual machine platform image.
```yaml
-Type: SwitchParameter
+Type: String
Parameter Sets: (All)
Aliases:
-Required: False
-Position: Named
-Default value: False
+Required: True
+Position: 4
+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.
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
-Aliases: wi
+Aliases: cf
Required: False
Position: Named
@@ -213,13 +212,14 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Confirm
-Prompts you for confirmation before running the cmdlet.
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
-Aliases: cf
+Aliases: wi
Required: False
Position: Named
@@ -229,14 +229,14 @@ 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).
+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.AzureStack.Management.Compute.Admin.Models.PlatformImage
-
## NOTES
## RELATED LINKS
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsVMExtension.md b/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsVMExtension.md
index 0f2b98dd2201..d8d1e5db95f7 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsVMExtension.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/Add-AzsVMExtension.md
@@ -32,23 +32,23 @@ Add a new platform image extension.
## PARAMETERS
-### -Publisher
-Name of the publisher.
+### -AsJob
+Run asynchronous as a job and return the job object.
```yaml
-Type: String
+Type: SwitchParameter
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 1
-Default value: None
+Required: False
+Position: Named
+Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Type
-Type of extension.
+### -ComputeRole
+The type of role, IaaS or PaaS, this extension supports.
```yaml
Type: String
@@ -56,59 +56,59 @@ Parameter Sets: (All)
Aliases:
Required: True
-Position: 2
+Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Version
-The version of the vritual machine image extension.
+### -Force
+Don't ask for confirmation.
```yaml
-Type: String
+Type: SwitchParameter
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 3
-Default value: None
+Required: False
+Position: Named
+Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
-### -SourceBlob
-URI to virtual machine extension package.
+### -IsSystemExtension
+Indicates if the extension is for the system.
```yaml
-Type: Object
+Type: SwitchParameter
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 4
-Default value: None
+Required: False
+Position: Named
+Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
-### -VmOsType
-Target virtual machine operating system type necessary for deploying the extension handler.
+### -Location
+Location of the resource.
```yaml
-Type: Object
+Type: String
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 5
+Required: False
+Position: 7
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -ComputeRole
-The type of role, IaaS or PaaS, this extension supports.
+### -Publisher
+Name of the publisher.
```yaml
Type: String
@@ -116,23 +116,23 @@ Parameter Sets: (All)
Aliases:
Required: True
-Position: 6
+Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -VmScaleSetEnabled
-Value indicating whether the extension is enabled for virtual machine scale set support.
+### -SourceBlob
+URI to virtual machine extension package.
```yaml
-Type: SwitchParameter
+Type: Object
Parameter Sets: (All)
Aliases:
-Required: False
-Position: Named
-Default value: False
+Required: True
+Position: 4
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
@@ -152,53 +152,53 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -IsSystemExtension
-Indicates if the extension is for the system.
+### -Type
+Type of extension.
```yaml
-Type: SwitchParameter
+Type: String
Parameter Sets: (All)
Aliases:
-Required: False
-Position: Named
-Default value: False
+Required: True
+Position: 2
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Location
-Location of the resource.
+### -Version
+The version of the vritual machine image extension.
```yaml
Type: String
Parameter Sets: (All)
Aliases:
-Required: False
-Position: 7
+Required: True
+Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -AsJob
-Run asynchronous as a job and return the job object.
+### -VmOsType
+Target virtual machine operating system type necessary for deploying the extension handler.
```yaml
-Type: SwitchParameter
+Type: Object
Parameter Sets: (All)
Aliases:
-Required: False
-Position: Named
-Default value: False
+Required: True
+Position: 5
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Force
-Don't ask for confirmation.
+### -VmScaleSetEnabled
+Value indicating whether the extension is enabled for virtual machine scale set support.
```yaml
Type: SwitchParameter
@@ -212,14 +212,13 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -WhatIf
-Shows what would happen if the cmdlet runs.
-The cmdlet is not run.
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
-Aliases: wi
+Aliases: cf
Required: False
Position: Named
@@ -228,13 +227,14 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Confirm
-Prompts you for confirmation before running the cmdlet.
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
-Aliases: cf
+Aliases: wi
Required: False
Position: Named
@@ -244,14 +244,14 @@ 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).
+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.AzureStack.Management.Compute.Admin.Models.VMExtension
-
## NOTES
## RELATED LINKS
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsComputeQuota.md b/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsComputeQuota.md
index e616537562ac..1066790952e5 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsComputeQuota.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsComputeQuota.md
@@ -34,7 +34,7 @@ Get a list of existing quotas.
### EXAMPLE 1
```
-Get-AzsComputeQuota
+Get-AzsComputeQuota -Location 'local'
```
Get all compute quotas at the specified location.
@@ -48,31 +48,31 @@ Get a specific compute quota.
## PARAMETERS
-### -Name
-Name of the quota.
+### -Location
+{{Fill Location Description}}
```yaml
Type: String
-Parameter Sets: Get
+Parameter Sets: List, Get
Aliases:
-Required: True
-Position: 1
+Required: False
+Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Location
-Location of the resource.
+### -Name
+Name of the quota.
```yaml
Type: String
-Parameter Sets: List, Get
+Parameter Sets: Get
Aliases:
-Required: False
-Position: Named
+Required: True
+Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
@@ -100,8 +100,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
-### Microsoft.AzureStack.Management.Compute.Admin.Models.Quota
-
+### ComputeQuotaObject
## NOTES
## RELATED LINKS
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsPlatformImage.md b/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsPlatformImage.md
index 9cb2f646e99f..8bd2d29263f2 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsPlatformImage.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsPlatformImage.md
@@ -49,15 +49,15 @@ Get a specific platform image.
## PARAMETERS
-### -Publisher
-Name of the publisher.
+### -Location
+Location of the resource.
```yaml
Type: String
-Parameter Sets: Get
+Parameter Sets: List, Get
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: False
@@ -79,8 +79,8 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Sku
-Name of the SKU.
+### -Publisher
+Name of the publisher.
```yaml
Type: String
@@ -94,60 +94,60 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Version
-The version of the platform image.
+### -ResourceId
+The resource id.
```yaml
Type: String
-Parameter Sets: Get
-Aliases:
+Parameter Sets: ResourceId
+Aliases: id
Required: True
Position: Named
Default value: None
-Accept pipeline input: False
+Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
-### -Location
-Location of the resource.
+### -Sku
+Name of the SKU.
```yaml
Type: String
-Parameter Sets: List, Get
+Parameter Sets: Get
Aliases:
-Required: False
+Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -ResourceId
-The resource id.
+### -Version
+The version of the platform image.
```yaml
Type: String
-Parameter Sets: ResourceId
-Aliases: id
+Parameter Sets: Get
+Aliases:
Required: True
Position: Named
Default value: None
-Accept pipeline input: True (ByPropertyName)
+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).
+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.AzureStack.Management.Compute.Admin.Models.PlatformImage
-
## NOTES
## RELATED LINKS
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsVMExtension.md b/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsVMExtension.md
index c7c446ca3462..eee68b256428 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsVMExtension.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/Get-AzsVMExtension.md
@@ -49,23 +49,23 @@ Get specific VM extension.
## PARAMETERS
-### -Publisher
-Name of the publisher.
+### -Location
+Location of the resource.
```yaml
Type: String
-Parameter Sets: Get
+Parameter Sets: List, Get
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Type
-Type of extension.
+### -Publisher
+Name of the publisher.
```yaml
Type: String
@@ -79,60 +79,60 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Version
-The version of the virtual machine image extension.
+### -ResourceId
+The resource id.
```yaml
Type: String
-Parameter Sets: Get
-Aliases:
+Parameter Sets: ResourceId
+Aliases: id
Required: True
Position: Named
Default value: None
-Accept pipeline input: False
+Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
-### -Location
-Location of the resource.
+### -Type
+Type of extension.
```yaml
Type: String
-Parameter Sets: List, Get
+Parameter Sets: Get
Aliases:
-Required: False
+Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -ResourceId
-The resource id.
+### -Version
+The version of the virtual machine image extension.
```yaml
Type: String
-Parameter Sets: ResourceId
-Aliases: id
+Parameter Sets: Get
+Aliases:
Required: True
Position: Named
Default value: None
-Accept pipeline input: True (ByPropertyName)
+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).
+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.AzureStack.Management.Compute.Admin.Models.VMExtension
-
## NOTES
## RELATED LINKS
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/New-AzsComputeQuota.md b/src/StackAdmin/Azs.Compute.Admin/Help/New-AzsComputeQuota.md
index 89979f196000..a6bcfd012032 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/New-AzsComputeQuota.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/New-AzsComputeQuota.md
@@ -13,8 +13,9 @@ Create a new compute quota used to limit compute resources.
## SYNTAX
```
-New-AzsComputeQuota [-Name] [[-AvailabilitySetCount] ] [[-CoresLimit] ]
- [[-VmScaleSetCount] ] [[-VirtualMachineCount] ] [[-Location] ] [-WhatIf] [-Confirm]
+New-AzsComputeQuota [-Name] [[-AvailabilitySetCount] ] [[-CoresCount] ]
+ [[-VmScaleSetCount] ] [[-VirtualMachineCount] ] [[-StandardManagedDiskAndSnapshotSize] ]
+ [[-PremiumManagedDiskAndSnapshotSize] ] [[-Location] ] [-WhatIf] [-Confirm]
[]
```
@@ -25,45 +26,75 @@ Create a new compute quota.
### EXAMPLE 1
```
-New-AzsComputeQuota -Name testQuota5 -AvailabilitySetCount 1000 -CoresLimit 1000 -VmScaleSetCount 1000 -VirtualMachineCount 1000
+New-AzsComputeQuota -Name testQuota5 -AvailabilitySetCount 1000 -CoresCount 1000 -VmScaleSetCount 1000 -VirtualMachineCount 1000 -StandardManagedDiskAndSnapshotSize 1024 -PremiumManagedDiskAndSnapshotSize 1024
```
Create a new compute quota.
## PARAMETERS
-### -Name
-Name of the quota.
+### -AvailabilitySetCount
+Number of availability sets allowed.
```yaml
-Type: String
+Type: Int32
Parameter Sets: (All)
Aliases:
-Required: True
-Position: 1
-Default value: None
+Required: False
+Position: 2
+Default value: 10
Accept pipeline input: False
Accept wildcard characters: False
```
-### -AvailabilitySetCount
-Maximum number of availability sets allowed.
+### -CoresCount
+Number of cores allowed.
```yaml
Type: Int32
Parameter Sets: (All)
+Aliases: CoresLimit
+
+Required: False
+Position: 3
+Default value: 100
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Location
+Location of the resource.
+
+```yaml
+Type: String
+Parameter Sets: (All)
Aliases:
Required: False
-Position: 2
-Default value: 10
+Position: 8
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+Name of the quota.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -CoresLimit
-Maximum number of cores allowed.
+### -PremiumManagedDiskAndSnapshotSize
+Size for standard managed disks and snapshots allowed.
```yaml
Type: Int32
@@ -71,14 +102,14 @@ Parameter Sets: (All)
Aliases:
Required: False
-Position: 3
-Default value: 100
+Position: 7
+Default value: 2048
Accept pipeline input: False
Accept wildcard characters: False
```
-### -VmScaleSetCount
-Maximum number of scale sets allowed.
+### -StandardManagedDiskAndSnapshotSize
+Size for standard managed disks and snapshots allowed.
```yaml
Type: Int32
@@ -86,14 +117,14 @@ Parameter Sets: (All)
Aliases:
Required: False
-Position: 4
-Default value: 100
+Position: 6
+Default value: 2048
Accept pipeline input: False
Accept wildcard characters: False
```
### -VirtualMachineCount
-Maximum number of virtual machines allowed.
+Number of virtual machines allowed.
```yaml
Type: Int32
@@ -107,29 +138,28 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Location
-Location of the resource.
+### -VmScaleSetCount
+Number of scale sets allowed.
```yaml
-Type: String
+Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
-Position: 6
-Default value: None
+Position: 4
+Default value: 100
Accept pipeline input: False
Accept wildcard characters: False
```
-### -WhatIf
-Shows what would happen if the cmdlet runs.
-The cmdlet is not run.
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
-Aliases: wi
+Aliases: cf
Required: False
Position: Named
@@ -138,13 +168,14 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Confirm
-Prompts you for confirmation before running the cmdlet.
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
-Aliases: cf
+Aliases: wi
Required: False
Position: Named
@@ -160,8 +191,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
-### Microsoft.AzureStack.Management.Compute.Admin.Models.Quota
-
+### ComputeQuotaObject
## NOTES
## RELATED LINKS
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/Remove-AzsComputeQuota.md b/src/StackAdmin/Azs.Compute.Admin/Help/Remove-AzsComputeQuota.md
index dbb7c4ee44e5..43a803afb2b9 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/Remove-AzsComputeQuota.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/Remove-AzsComputeQuota.md
@@ -34,26 +34,19 @@ Remove-AzsComputeQuota -Name ComputeQuota
Remove a compute quota given all the parameters.
-### EXAMPLE 2
-```
-Remove-AzsComputeQuota -Name ComputeQuota
-```
-
-Remove a compute quota given just the name.
-
## PARAMETERS
-### -Name
-Name of the quota.
+### -Force
+Don't ask for confirmation.
```yaml
-Type: String
-Parameter Sets: Delete
+Type: SwitchParameter
+Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
-Default value: None
+Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
@@ -74,6 +67,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -Name
+Name of the quota.
+
+```yaml
+Type: String
+Parameter Sets: Delete
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -ResourceId
The resource id.
@@ -89,17 +97,17 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
-### -Force
-Don't ask for confirmation.
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
-Aliases:
+Aliases: cf
Required: False
Position: Named
-Default value: False
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
@@ -120,21 +128,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Confirm
-Prompts you for confirmation before running the cmdlet.
-
-```yaml
-Type: SwitchParameter
-Parameter Sets: (All)
-Aliases: cf
-
-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).
diff --git a/src/StackAdmin/Azs.Compute.Admin/Help/Set-AzsComputeQuota.md b/src/StackAdmin/Azs.Compute.Admin/Help/Set-AzsComputeQuota.md
index 6a33500e54b6..79879566b3bf 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Help/Set-AzsComputeQuota.md
+++ b/src/StackAdmin/Azs.Compute.Admin/Help/Set-AzsComputeQuota.md
@@ -14,23 +14,25 @@ Update an existing compute quota using the provided parameters.
### Update (Default)
```
-Set-AzsComputeQuota -Name [-AvailabilitySetCount ] [-CoresLimit ]
- [-VmScaleSetCount ] [-VirtualMachineCount ] [-Location ] [-WhatIf] [-Confirm]
- []
+Set-AzsComputeQuota -Name [-AvailabilitySetCount ] [-CoresCount ]
+ [-VmScaleSetCount ] [-VirtualMachineCount ] [-StandardManagedDiskAndSnapshotSize ]
+ [-PremiumManagedDiskAndSnapshotSize ] [-Location ] [-WhatIf] [-Confirm] []
```
### ResourceId
```
-Set-AzsComputeQuota [-AvailabilitySetCount ] [-CoresLimit ] [-VmScaleSetCount ]
- [-VirtualMachineCount ] [-Location ] -ResourceId [-WhatIf] [-Confirm]
+Set-AzsComputeQuota [-AvailabilitySetCount ] [-CoresCount ] [-VmScaleSetCount ]
+ [-VirtualMachineCount ] [-StandardManagedDiskAndSnapshotSize ]
+ [-PremiumManagedDiskAndSnapshotSize ] [-Location ] -ResourceId [-WhatIf] [-Confirm]
[]
```
### InputObject
```
-Set-AzsComputeQuota [-AvailabilitySetCount ] [-CoresLimit ] [-VmScaleSetCount ]
- [-VirtualMachineCount ] [-Location ] -InputObject [-WhatIf] [-Confirm]
- []
+Set-AzsComputeQuota [-AvailabilitySetCount ] [-CoresCount ] [-VmScaleSetCount ]
+ [-VirtualMachineCount ] [-StandardManagedDiskAndSnapshotSize ]
+ [-PremiumManagedDiskAndSnapshotSize ] [-Location ] -InputObject [-WhatIf]
+ [-Confirm] []
```
## DESCRIPTION
@@ -40,35 +42,35 @@ Update an existing compute quota.
### EXAMPLE 1
```
-Set-AzsComputeQuota -Name Quota1 -CoresLimit 10
+Set-AzsComputeQuota -Name Quota1 -VmScaleSetCount 20
```
Update a compute quota.
## PARAMETERS
-### -Name
-The name of the quota.
+### -AvailabilitySetCount
+Number of availability sets allowed.
```yaml
-Type: String
-Parameter Sets: Update
+Type: Int32
+Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
-Default value: None
+Default value: 0
Accept pipeline input: False
Accept wildcard characters: False
```
-### -AvailabilitySetCount
-Maximum number of availability sets allowed.
+### -CoresCount
+Number of cores allowed.
```yaml
Type: Int32
Parameter Sets: (All)
-Aliases:
+Aliases: CoresLimit
Required: False
Position: Named
@@ -77,62 +79,62 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -CoresLimit
-Maximum number of core allowed.
+### -InputObject
+Possibly modified compute quota returned form Get-AzsComputeQuota.
```yaml
-Type: Int32
-Parameter Sets: (All)
+Type: ComputeQuotaObject
+Parameter Sets: InputObject
Aliases:
-Required: False
+Required: True
Position: Named
-Default value: 0
-Accept pipeline input: False
+Default value: None
+Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
-### -VmScaleSetCount
-Maximum number of scale sets allowed.
+### -Location
+Location of the resource.
```yaml
-Type: Int32
+Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
-Default value: 0
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -VirtualMachineCount
-Maximum number of virtual machines allowed.
+### -Name
+The name of the quota.
```yaml
-Type: Int32
-Parameter Sets: (All)
+Type: String
+Parameter Sets: Update
Aliases:
-Required: False
+Required: True
Position: Named
-Default value: 0
+Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
-### -Location
-Location of the resource.
+### -PremiumManagedDiskAndSnapshotSize
+Size for standard managed disks and snapshots allowed.
```yaml
-Type: String
+Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
-Default value: None
+Default value: 0
Accept pipeline input: False
Accept wildcard characters: False
```
@@ -152,33 +154,47 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
-### -InputObject
-Posbbily modified compute quota returned form Get-AzsComputeQuota.
+### -StandardManagedDiskAndSnapshotSize
+Size for standard managed disks and snapshots allowed.
```yaml
-Type: Quota
-Parameter Sets: InputObject
+Type: Int32
+Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
-Default value: None
-Accept pipeline input: True (ByValue)
+Default value: 0
+Accept pipeline input: False
Accept wildcard characters: False
```
-### -WhatIf
-Shows what would happen if the cmdlet runs.
-The cmdlet is not run.
+### -VirtualMachineCount
+Number of virtual machines allowed.
```yaml
-Type: SwitchParameter
+Type: Int32
Parameter Sets: (All)
-Aliases: wi
+Aliases:
Required: False
Position: Named
-Default value: None
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -VmScaleSetCount
+Number of scale sets allowed.
+
+```yaml
+Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 0
Accept pipeline input: False
Accept wildcard characters: False
```
@@ -198,6 +214,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: 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).
@@ -205,8 +237,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
-### Microsoft.AzureStack.Management.Compute.Admin.Models.Quota
-
+### ComputeQuotaObject
## NOTES
## RELATED LINKS
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/ConvertTo-ComputeQuota.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/ConvertTo-ComputeQuota.ps1
new file mode 100644
index 000000000000..916c39f713b4
--- /dev/null
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/ConvertTo-ComputeQuota.ps1
@@ -0,0 +1,53 @@
+<#
+Copyright (c) Microsoft Corporation. All rights reserved.
+Licensed under the MIT License. See License.txt in the project root for license information.
+
+Manually created custom quota object class
+#>
+
+class ComputeQuotaObject{
+
+ # Resource Properties
+ [string]$Id
+ [string]$Location
+ [string]$Name
+ [string]$Type
+
+ #Compute Quota Properties
+ [int32]$AvailabilitySetCount
+ [int32]$CoresLimit
+ [int32]$VmScaleSetCount
+ [int32]$VirtualMachineCount
+ [int32]$StandardManagedDiskAndSnapshotSize
+ [int32]$PremiumManagedDiskAndSnapshotSize
+}
+
+function ConvertTo-ComputeQuota {
+
+ [OutputType([ComputeQuotaObject])]
+ param(
+ [Parameter(Mandatory = $true)]
+ [Microsoft.AzureStack.Management.Compute.Admin.Models.Quota]
+ $Quota
+ )
+
+ [ComputeQuotaObject] $result = @{}
+
+ Get-Member -InputObject $Quota -MemberType Properties | ForEach-Object {
+ $property = $_.Name
+ $value = Select-Object -InputObject $Quota -ExpandProperty "$property"
+
+ if($property -eq 'MaxAllocationStandardManagedDisksAndSnapshots') {
+ $result.StandardManagedDiskAndSnapshotSize = $value
+ } elseif($property -eq 'MaxAllocationPremiumManagedDisksAndSnapshots') {
+ $result.PremiumManagedDiskAndSnapshotSize = $value
+ } elseif($property -eq 'CoresLimit' -or $property -eq 'CoresCount' ) {
+ $result.CoresLimit = $value
+ } else {
+ $result."$property" = $value
+ }
+ }
+
+ return $result
+}
+
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/ConvertTo-SDKQuota.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/ConvertTo-SDKQuota.ps1
new file mode 100644
index 000000000000..14a95d392ac8
--- /dev/null
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/ConvertTo-SDKQuota.ps1
@@ -0,0 +1,39 @@
+<#
+Copyright (c) Microsoft Corporation. All rights reserved.
+Licensed under the MIT License. See License.txt in the project root for license information.
+
+Manually created custom quota object class
+#>
+
+function ConvertTo-SdkQuota
+{ [OutputType([Microsoft.AzureStack.Management.Compute.Admin.Models.Quota])]
+ param(
+ [Parameter(Mandatory = $true)]
+ [ComputeQuotaObject]
+ $CustomQuota
+ )
+
+ # Create object
+ # This object should not set "Name" as its a read only property
+ $flattenedParameters = @('AvailabilitySetCount', 'CoresLimit', 'VmScaleSetCount', 'VirtualMachineCount', 'MaxAllocationStandardManagedDisksAndSnapshots', 'MaxAllocationPremiumManagedDisksAndSnapshots', 'Location')
+ $utilityCmdParams = @{}
+ $flattenedParameters | ForEach-Object {
+
+ if($_ -eq 'MaxAllocationStandardManagedDisksAndSnapshots') {
+ $utilityCmdParams[$_] = $CustomQuota.StandardManagedDiskAndSnapshotSize
+ } elseif($_ -eq 'MaxAllocationPremiumManagedDisksAndSnapshots') {
+ $utilityCmdParams[$_] = $CustomQuota.PremiumManagedDiskAndSnapshotSize
+ } elseif($_ -eq 'CoresLimit' ) {
+ $utilityCmdParams['CoresLimit'] = $CustomQuota.CoresLimit
+ } elseif($_ -eq 'CoresCount' ) {
+ $utilityCmdParams['CoresLimit'] = $CustomQuota.CoresCount
+
+ } else {
+ $property = $_
+ $value = Select-Object -InputObject $CustomQuota -ExpandProperty "$property"
+ $utilityCmdParams[$_] = $value
+ }
+ }
+
+ New-QuotaObject @utilityCmdParams
+}
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/New-QuotaObject.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/New-QuotaObject.ps1
index 2b79ec001b48..82ebc2034825 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/New-QuotaObject.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerDefinitionCommands/New-QuotaObject.ps1
@@ -14,7 +14,7 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
Holds quota information used to control resource allocation.
.PARAMETER AvailabilitySetCount
- Maximum number of availability sets allowed.
+ Number of availability sets allowed.
.PARAMETER Id
ID of the resource.
@@ -23,16 +23,22 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
Type of Resource.
.PARAMETER CoresLimit
- Maximum number of core allowed.
+ Number of cores allowed.
.PARAMETER VmScaleSetCount
- Maximum number of scale sets allowed.
+ Number of scale sets allowed.
+
+.PARAMETER MaxAllocationStandardManagedDisksAndSnapshots
+ Number of Standard Managed Disks and Snapshots allowed.
+
+.PARAMETER MaxAllocationPremiumManagedDisksAndSnapshots
+ Number of Premium Managed Disks and Snapshots allowed.
.PARAMETER Name
Name of the resource.
.PARAMETER VirtualMachineCount
- Maximum number of virtual machines allowed.
+ Number of virtual machines allowed.
.PARAMETER Location
Location of the resource.
@@ -61,6 +67,14 @@ function New-QuotaObject
[int32]
$VmScaleSetCount,
+ [Parameter(Mandatory = $false)]
+ [int32]
+ $MaxAllocationStandardManagedDisksAndSnapshots,
+
+ [Parameter(Mandatory = $false)]
+ [int32]
+ $MaxAllocationPremiumManagedDisksAndSnapshots,
+
[Parameter(Mandatory = $false)]
[string]
$Name,
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Add-AzsPlatformImage.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Add-AzsPlatformImage.ps1
index 11d3c8cb212e..860a3e078f5c 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Add-AzsPlatformImage.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Add-AzsPlatformImage.ps1
@@ -124,9 +124,12 @@ function Add-AzsPlatformImage {
if ($PSCmdlet.ShouldProcess("$Publisher/$Offer/$Sku/$Version" , "Add new virtual machine image")) {
+ if ( [System.String]::IsNullOrEmpty($Location)) {
+ $Location = (Get-AzureRMLocation).Location
+ }
$dontCheck = $true
try {
- $result = Get-AzsPlatformImage -Publisher $Publisher -Offer $Offer -Sku $Sku -Version $Version
+ $result = Get-AzsPlatformImage -Publisher $Publisher -Offer $Offer -Sku $Sku -Version $Version -Location $Location
$dontCheck = $result -eq $null
} catch {
# No-op
@@ -162,10 +165,6 @@ function Add-AzsPlatformImage {
}
$NewImage = New-PlatformImageParametersObject @utilityCmdParams
- if ( -not $PSBoundParameters.ContainsKey('Location')) {
- $Location = (Get-AzureRMLocation).Location
- }
-
Write-Verbose -Message 'Performing operation add on $ComputeAdminClient.'
$TaskResult = $ComputeAdminClient.PlatformImages.CreateWithHttpMessagesAsync($Location, $Publisher, $Offer, $Sku, $Version, $NewImage)
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsComputeQuota.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsComputeQuota.ps1
index c8582eb2ff71..4fc4d44da5fb 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsComputeQuota.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsComputeQuota.ps1
@@ -24,7 +24,7 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
.EXAMPLE
- PS C:\> Get-AzsComputeQuota
+ PS C:\> Get-AzsComputeQuota -Location 'local'
Get all compute quotas at the specified location.
@@ -36,7 +36,7 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
#>
function Get-AzsComputeQuota {
- [OutputType([Microsoft.AzureStack.Management.Compute.Admin.Models.Quota])]
+ [OutputType([ComputeQuotaObject])]
[CmdletBinding(DefaultParameterSetName = 'List')]
param(
[Parameter(Mandatory = $true, ParameterSetName = 'Get', Position = 0)]
@@ -69,8 +69,6 @@ function Get-AzsComputeQuota {
Process {
-
-
$NewServiceClient_params = @{
FullClientTypeName = 'Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient'
}
@@ -143,7 +141,8 @@ function Get-AzsComputeQuota {
$GetTaskResult_params = @{
TaskResult = $TaskResult
}
- Get-TaskResult @GetTaskResult_params
+
+ Get-TaskResult @GetTaskResult_params | ForEach-Object { ConvertTo-ComputeQuota -Quota $_ }
}
}
@@ -154,4 +153,3 @@ function Get-AzsComputeQuota {
}
}
}
-
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsPlatformImage.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsPlatformImage.ps1
index d06a5603ab60..26bce2c07970 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsPlatformImage.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Get-AzsPlatformImage.ps1
@@ -184,4 +184,3 @@ function Get-AzsPlatformImage {
}
}
}
-
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/New-AzsComputeQuota.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/New-AzsComputeQuota.ps1
index f27f946410af..4dd71a5c787b 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/New-AzsComputeQuota.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/New-AzsComputeQuota.ps1
@@ -17,29 +17,35 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
Name of the quota.
.PARAMETER AvailabilitySetCount
- Maximum number of availability sets allowed.
+ Number of availability sets allowed.
-.PARAMETER CoresLimit
- Maximum number of cores allowed.
+.PARAMETER CoresCount
+ Number of cores allowed.
.PARAMETER VmScaleSetCount
- Maximum number of scale sets allowed.
+ Number of scale sets allowed.
.PARAMETER VirtualMachineCount
- Maximum number of virtual machines allowed.
+ Number of virtual machines allowed.
-.PARAMETER LocationName
+.PARAMETER StandardManagedDiskAndSnapshotSize
+ Size for standard managed disks and snapshots allowed.
+
+.PARAMETER PremiumManagedDiskAndSnapshotSize
+ Size for standard managed disks and snapshots allowed.
+
+.PARAMETER Location
Location of the resource.
.EXAMPLE
- PS C:\> New-AzsComputeQuota -Name testQuota5 -AvailabilitySetCount 1000 -CoresLimit 1000 -VmScaleSetCount 1000 -VirtualMachineCount 1000
+ PS C:\> New-AzsComputeQuota -Name testQuota5 -AvailabilitySetCount 1000 -CoresCount 1000 -VmScaleSetCount 1000 -VirtualMachineCount 1000 -StandardManagedDiskAndSnapshotSize 1024 -PremiumManagedDiskAndSnapshotSize 1024
Create a new compute quota.
#>
function New-AzsComputeQuota {
- [OutputType([Microsoft.AzureStack.Management.Compute.Admin.Models.Quota])]
+ [OutputType([ComputeQuotaObject])]
[CmdletBinding(SupportsShouldProcess = $true)]
param(
[Parameter(Mandatory = $true)]
@@ -51,9 +57,10 @@ function New-AzsComputeQuota {
[int32]
$AvailabilitySetCount = 10,
+ [Alias("CoresLimit")]
[Parameter(Mandatory = $false)]
[int32]
- $CoresLimit = 100,
+ $CoresCount = 100,
[Parameter(Mandatory = $false)]
[int32]
@@ -63,6 +70,14 @@ function New-AzsComputeQuota {
[int32]
$VirtualMachineCount = 100,
+ [Parameter(Mandatory = $false)]
+ [int32]
+ $StandardManagedDiskAndSnapshotSize = 2048,
+
+ [Parameter(Mandatory = $false)]
+ [int32]
+ $PremiumManagedDiskAndSnapshotSize = 2048,
+
[Parameter(Mandatory = $false)]
[System.String]
$Location
@@ -80,8 +95,12 @@ function New-AzsComputeQuota {
}
Process {
-
-
+ # Breaking changes message
+ if ($PSBoundParameters.ContainsKey('CoresCount')) {
+ if ( $MyInvocation.Line -match "\s-CoresLimit\s") {
+ Write-Warning -Message "The parameter alias CoresLimit will be deprecated in future release. Please use the parameter CoresCount instead"
+ }
+ }
if ($PSCmdlet.ShouldProcess("$Name", "Create a new compute quota.")) {
@@ -103,12 +122,28 @@ function New-AzsComputeQuota {
}
}
- # Create object
- $flattenedParameters = @('AvailabilitySetCount', 'CoresLimit', 'VmScaleSetCount', 'VirtualMachineCount', 'Location' )
$utilityCmdParams = @{}
+ $flattenedParameters = @('AvailabilitySetCount', 'CoresCount', 'VmScaleSetCount', 'VirtualMachineCount', 'StandardManagedDiskAndSnapshotSize', 'PremiumManagedDiskAndSnapshotSize' )
$flattenedParameters | ForEach-Object {
- $utilityCmdParams[$_] = Get-Variable -Name $_ -ValueOnly
+ if ($PSBoundParameters.ContainsKey($_)) {
+
+ $NewValue = $PSBoundParameters[$_]
+
+ if($NewValue -ne $null)
+ {
+ if($_ -eq 'StandardManagedDiskAndSnapshotSize') {
+ $utilityCmdParams.MaxAllocationStandardManagedDisksAndSnapshots = $NewValue
+ } elseif($_ -eq 'PremiumManagedDiskAndSnapshotSize') {
+ $utilityCmdParams.MaxAllocationPremiumManagedDisksAndSnapshots = $NewValue
+ } elseif($_ -eq 'CoresCount') {
+ $utilityCmdParams.CoresLimit = $NewValue
+ } else {
+ $utilityCmdParams[$_] = $NewValue
+ }
+ }
+ }
}
+
$NewQuota = New-QuotaObject @utilityCmdParams
$NewServiceClient_params = @{
@@ -129,12 +164,13 @@ function New-AzsComputeQuota {
$GetTaskResult_params = @{
TaskResult = $TaskResult
}
- Get-TaskResult @GetTaskResult_params
+
+ $quotaObj = Get-TaskResult @GetTaskResult_params
+ ConvertTo-ComputeQuota -Quota $quotaObj
}
}
}
-
End {
if ($tracerObject) {
$global:DebugPreference = $oldDebugPreference
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsComputeQuota.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsComputeQuota.ps1
index 266ce08965cd..c16ca12e5633 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsComputeQuota.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsComputeQuota.ps1
@@ -31,11 +31,6 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
Remove a compute quota given all the parameters.
-.EXAMPLE
-
- PS C:\> Remove-AzsComputeQuota -Name ComputeQuota
-
- Remove a compute quota given just the name.
#>
function Remove-AzsComputeQuota {
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsVMExtension.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsVMExtension.ps1
index ac138b129f42..b942f641c0a4 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsVMExtension.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Remove-AzsVMExtension.ps1
@@ -22,7 +22,7 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
.PARAMETER Version
The version of the virtual machine extension image.
-.PARAMETER LocationName
+.PARAMETER Location
Location of the resource.
.PARAMETER ResourceId
@@ -146,5 +146,4 @@ function Remove-AzsVMExtension {
Unregister-PSSwaggerClientTracing -TracerObject $tracerObject
}
}
-}
-
+}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Set-AzsComputeQuota.ps1 b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Set-AzsComputeQuota.ps1
index 8cce6d2b5143..fa3c6327131d 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Set-AzsComputeQuota.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Module/Azs.Compute.Admin/Generated.PowerShell.Commands/SwaggerPathCommands/Set-AzsComputeQuota.ps1
@@ -20,32 +20,38 @@ Changes may cause incorrect behavior and will be lost if the code is regenerated
Location of the resource.
.PARAMETER AvailabilitySetCount
- Maximum number of availability sets allowed.
+ Number of availability sets allowed.
-.PARAMETER CoresLimit
- Maximum number of core allowed.
+.PARAMETER CoresCount
+ Number of cores allowed.
.PARAMETER VmScaleSetCount
- Maximum number of scale sets allowed.
+ Number of scale sets allowed.
.PARAMETER VirtualMachineCount
- Maximum number of virtual machines allowed.
+ Number of virtual machines allowed.
+
+.PARAMETER StandardManagedDiskAndSnapshotSize
+ Size for standard managed disks and snapshots allowed.
+
+.PARAMETER PremiumManagedDiskAndSnapshotSize
+ Size for standard managed disks and snapshots allowed.
.PARAMETER ResourceId
The ARM compute quota id.
.PARAMETER InputObject
- Posbbily modified compute quota returned form Get-AzsComputeQuota.
+ Possibly modified compute quota returned form Get-AzsComputeQuota.
.EXAMPLE
- PS C:\> Set-AzsComputeQuota -Name Quota1 -CoresLimit 10
+ PS C:\> Set-AzsComputeQuota -Name Quota1 -VmScaleSetCount 20
Update a compute quota.
#>
function Set-AzsComputeQuota {
- [OutputType([Microsoft.AzureStack.Management.Compute.Admin.Models.Quota])]
+ [OutputType([ComputeQuotaObject])]
[CmdletBinding(DefaultParameterSetName = 'Update', SupportsShouldProcess = $true)]
param(
[Parameter(Mandatory = $true, ParameterSetName = 'Update')]
@@ -57,9 +63,10 @@ function Set-AzsComputeQuota {
[int32]
$AvailabilitySetCount,
+ [Alias("CoresLimit")]
[Parameter(Mandatory = $false)]
[int32]
- $CoresLimit,
+ $CoresCount,
[Parameter(Mandatory = $false)]
[int32]
@@ -69,6 +76,14 @@ function Set-AzsComputeQuota {
[int32]
$VirtualMachineCount,
+ [Parameter(Mandatory = $false)]
+ [int32]
+ $StandardManagedDiskAndSnapshotSize,
+
+ [Parameter(Mandatory = $false)]
+ [int32]
+ $PremiumManagedDiskAndSnapshotSize,
+
[Parameter(Mandatory = $false)]
[System.String]
$Location,
@@ -80,7 +95,7 @@ function Set-AzsComputeQuota {
[Parameter(Mandatory = $true, ValueFromPipeline = $true, ParameterSetName = 'InputObject')]
[ValidateNotNullOrEmpty()]
- [Microsoft.AzureStack.Management.Compute.Admin.Models.Quota]
+ [ComputeQuotaObject]
$InputObject
)
@@ -96,7 +111,12 @@ function Set-AzsComputeQuota {
}
Process {
-
+ # Breaking changes message
+ if ($PSBoundParameters.ContainsKey('CoresCount')) {
+ if ( $MyInvocation.Line -match "\s-CoresLimit\s") {
+ Write-Warning -Message "The parameter alias CoresLimit will be deprecated in future release. Please use the parameter CoresCount instead"
+ }
+ }
$NewQuota = $null
@@ -143,16 +163,32 @@ function Set-AzsComputeQuota {
$NewQuota = Get-AzsComputeQuota -Location $Location -Name $Name
}
+ $QuotaToBeSet = ConvertTo-SdkQuota -CustomQuota $NewQuota
+
# Update the Quota object from anything passed in
- $flattenedParameters = @('AvailabilitySetCount', 'CoresLimit', 'VmScaleSetCount', 'VirtualMachineCount' )
+ $flattenedParameters = @('AvailabilitySetCount', 'CoresCount', 'VmScaleSetCount', 'VirtualMachineCount', 'StandardManagedDiskAndSnapshotSize', 'PremiumManagedDiskAndSnapshotSize' )
$flattenedParameters | ForEach-Object {
if ($PSBoundParameters.ContainsKey($_)) {
- $NewQuota.$($_) = $PSBoundParameters[$_]
+
+ $NewValue = $PSBoundParameters[$_]
+
+ if($NewValue -ne $null)
+ {
+ if($_ -eq 'StandardManagedDiskAndSnapshotSize') {
+ $QuotaToBeSet.MaxAllocationStandardManagedDisksAndSnapshots = $NewValue
+ } elseif($_ -eq 'PremiumManagedDiskAndSnapshotSize') {
+ $QuotaToBeSet.MaxAllocationPremiumManagedDisksAndSnapshots = $NewValue
+ } elseif($_ -eq 'CoresCount') {
+ $QuotaToBeSet.CoresLimit = $NewValue
+ } else {
+ $QuotaToBeSet.$($_) = $NewValue
+ }
+ }
}
}
Write-Verbose -Message 'Performing operation update on $ComputeAdminClient.'
- $TaskResult = $ComputeAdminClient.Quotas.CreateOrUpdateWithHttpMessagesAsync($Location, $Name, $NewQuota)
+ $TaskResult = $ComputeAdminClient.Quotas.CreateOrUpdateWithHttpMessagesAsync($Location, $Name, $QuotaToBeSet)
} else {
Write-Verbose -Message 'Failed to map parameter set to operation method.'
throw 'Module failed to find operation to execute.'
@@ -162,7 +198,7 @@ function Set-AzsComputeQuota {
$GetTaskResult_params = @{
TaskResult = $TaskResult
}
- Get-TaskResult @GetTaskResult_params
+ ConvertTo-ComputeQuota -Quota (Get-TaskResult @GetTaskResult_params)
}
}
}
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateQuota.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateQuota.json
index 094c1fe705c9..575708f9cb19 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateQuota.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateQuota.json
@@ -1,1928 +1,1088 @@
{
- "Entries": [
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "139"
- ],
- "x-ms-client-request-id": [
- "4613b7b8-9ca9-4276-ba21-e8b073626eed"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "306"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTar1JNBFJ9WgK7Q8NCKIZwCq91b8PaWoWNYeuAflo66ndu0LDdjTK53g8CTVlBCg+PHNG79K7Zsg/vcHYFgdgsOwhtmQZE5htfhsyiBS6ACM4+iq2TJCIJAK/T7zlgfvhZ7eKxOTtA+aEHUubEzz"
- ],
- "x-ms-correlation-request-id": [
- "7d3c4616-acdb-4e20-b1f4-cd4087b3f647"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
- ],
- "x-ms-request-id": [
- "7d3c4616-acdb-4e20-b1f4-cd4087b3f647"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:7d3c4616-acdb-4e20-b1f4-cd4087b3f647"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3c89b527-869a-4f42-88d9-9b552c889917"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "306"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBhNvBA/Zz2TZ87AjI0u2al9Dq9bGkTol2G7rnHLUCYDdiBgNFjv+DDmflEBgVzDuChr3WoC1YOvUlyMMZuxmGKNa2Ij8EYSgFzJ21Q6gyWkBYCT67mqcUN8gW6EE/nSNAehx1X2ftJwETtBpjDRU"
- ],
- "x-ms-correlation-request-id": [
- "ad2d998c-2a62-4af5-ad0e-7e256f3093dc"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14842"
- ],
- "x-ms-request-id": [
- "ad2d998c-2a62-4af5-ad0e-7e256f3093dc"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:ad2d998c-2a62-4af5-ad0e-7e256f3093dc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "41a69910-ccf1-486b-9171-dc634c7a5737"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhld51pKLrxNEfte7ULDf5c7XNOxS+wKfMW94PoHlVuME63Re617Vnx5gGOe+hxs0zL1iXD5zjTtWmgNVSmo+Ht901P+dS+bLkVaWAJyHUM3cpoNC41ZdsLyrEGdiqjKdTFKozhIgS7huY/ZTwcvE"
- ],
- "x-ms-correlation-request-id": [
- "7afb27f8-ca47-41a5-a944-a70137090fe9"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14830"
- ],
- "x-ms-request-id": [
- "7afb27f8-ca47-41a5-a944-a70137090fe9"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:7afb27f8-ca47-41a5-a944-a70137090fe9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "139"
- ],
- "x-ms-client-request-id": [
- "28d0b6f3-ae5b-4bc0-b2c6-1dbb0c1a35ab"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "306"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqb7sW1ViK6Na1S6K+h/DBB0Xubio9mNRukhiv+JEpDmok0GvdUNc0YilOMpQn4fR9GgSb+FvNpyX7h4iZbKy7Lf5T4/WcH3lSplB/Z65N2komNfnQ1JVzNUMBt+9CruFTISwPrFTszqD4mAnvmch"
- ],
- "x-ms-correlation-request-id": [
- "186f148d-9c42-4255-9d2c-f8c403930b22"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
- ],
- "x-ms-request-id": [
- "186f148d-9c42-4255-9d2c-f8c403930b22"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:186f148d-9c42-4255-9d2c-f8c403930b22"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "73e681bb-9634-475e-a914-e64a40ae43d6"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAo5Rk8rdBdHJdvTGKfIfNL01na6GTPCh2lsv0yt7/3sTzUPnTMFlpQhtNkLLZ6WwJfR6OKTThDrKuvtknjS0KpMUop47fqyG1x04fvOjGQu6eIoMDGEupaDwiV00RbYyE93DuHJden1Avvm19pfh"
- ],
- "x-ms-correlation-request-id": [
- "3cfcae1c-f6a5-4562-aa6d-b3e552c30c8a"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14841"
- ],
- "x-ms-request-id": [
- "3cfcae1c-f6a5-4562-aa6d-b3e552c30c8a"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:3cfcae1c-f6a5-4562-aa6d-b3e552c30c8a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cf3d1487-4b93-4448-9892-43dd8fe23df5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvisVyrx/4BmeY5LkW2N1dlz7PaI4HqSqITemCqKujIOTyyPNGhfp5wx49k80jaEpd02lYY4iluJqel0Hz5pY9f4XdN125YNMNCMf/StXc/3TqSL34sJ2Hb22dq6GIxFVZe06rq/kPUWmzg8SfakK5"
- ],
- "x-ms-correlation-request-id": [
- "abab0bb3-2def-48da-bc9b-3a19cf4c3ff4"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14829"
- ],
- "x-ms-request-id": [
- "abab0bb3-2def-48da-bc9b-3a19cf4c3ff4"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:abab0bb3-2def-48da-bc9b-3a19cf4c3ff4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTI/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "139"
- ],
- "x-ms-client-request-id": [
- "91f49bc1-05e7-406f-a372-2cfdc23fc3fc"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "306"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcl1t884Q0jL9GB5JdbdbmlwSNaG754BqCGqjlB+xrmv+RHTNHY8TPe6GJUytaZ39IiHXC+5ZZASqiDoGlLfQsXy6QYSvSkP/a/QHdA9dN121IExTGCLwwlZUnYIdvUZLE7FP+wlDaoxBQZ8NRqVo"
- ],
- "x-ms-correlation-request-id": [
- "c73ddbce-3504-491a-93f4-38cff88c3ece"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
- ],
- "x-ms-request-id": [
- "c73ddbce-3504-491a-93f4-38cff88c3ece"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:c73ddbce-3504-491a-93f4-38cff88c3ece"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTI/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2fe1f270-ea28-4d6f-88b6-ab602db3d11c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmxgFtaPPfCKPH0fNZoOHOZRpzahy14v1yG9zh3MqeDQ10SB80jH6sjJffateAkxLnrtAmcMsWPPhJGJOBLdb3wu2gfs7Ubn4boF30nRH/igeCvRwigyT1S8vzEmYkKXTkE4Is88R4NRGUiMcPA70"
- ],
- "x-ms-correlation-request-id": [
- "b32c7350-c2a8-4c22-8a31-2026821b0654"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14840"
- ],
- "x-ms-request-id": [
- "b32c7350-c2a8-4c22-8a31-2026821b0654"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:b32c7350-c2a8-4c22-8a31-2026821b0654"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTI/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "87e92741-3b1e-4ea5-aacb-f0d8176c2c66"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtE2XXgaBKPYRD8dqv3Zi9+96b+eb9g7zFytIKYITJFWIZkYIFgprYVw9rRalhCt/dLZJkIX8T8wldT3rnWbF84fXiK58Kcd1LMcs96/utTqLISPcEul6smOn5dHaTygdzt6z9f+tRaaD/UJooB2J"
- ],
- "x-ms-correlation-request-id": [
- "029b0960-191c-40d3-8655-af740d909435"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14828"
- ],
- "x-ms-request-id": [
- "029b0960-191c-40d3-8655-af740d909435"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:029b0960-191c-40d3-8655-af740d909435"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "139"
- ],
- "x-ms-client-request-id": [
- "8095ebb9-0034-48b2-8494-930caa0b01d7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "306"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCPukJgcxyFuyOSa5YvQuvlWG1x95bpkZIjhU3ne7K4xpC0Yhd4ADu2+KCK+q44sVL4+z8hQ/UdrMeJ1pR5O+ujmWtgLyiRXUlMvcLpM4kiWJaRUIlp4Lm/0sW5JMJA7RWC9HIuhYUez4bbWDhe1Y"
- ],
- "x-ms-correlation-request-id": [
- "680c9261-e139-4b99-b49f-656d76aaff06"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
- ],
- "x-ms-request-id": [
- "680c9261-e139-4b99-b49f-656d76aaff06"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:680c9261-e139-4b99-b49f-656d76aaff06"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "96ac8f6f-58a6-44bf-a8b3-b933716d03b7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "306"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwAZNp+N1XH6z8Jgj1b69btBMP45+8O30/Bt545efwSuMscpE8gLmWARl5pY/xG3IV4WVIsPReNoS3zAyMAFhGjtGuOhfac58CLH+w75RIwsAIk81imiSUHrwRDprp0BL+6kcbhnv2WwMpANO+82G"
- ],
- "x-ms-correlation-request-id": [
- "47c3cc48-cfb2-4ea4-affa-81c02a51b2fa"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14839"
- ],
- "x-ms-request-id": [
- "47c3cc48-cfb2-4ea4-affa-81c02a51b2fa"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:47c3cc48-cfb2-4ea4-affa-81c02a51b2fa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f05bb68a-fa60-4485-b2a1-a81244acac05"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTgcCSwlTciRI7mSdCte4fFsZDvHIQdNfm6DDcvpOHBKb6euA5pBwYwK3XD7u5MQzcDoRhk6NlehlrIDgUU2FjCsU14NlPES92xPYA65V77uMV1MhraucaTXyLZzjTKVTaM5hLOiemkVSofPm31+z"
- ],
- "x-ms-correlation-request-id": [
- "c3e4fe63-82f9-4690-b476-7db72062ff41"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14827"
- ],
- "x-ms-request-id": [
- "c3e4fe63-82f9-4690-b476-7db72062ff41"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:c3e4fe63-82f9-4690-b476-7db72062ff41"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTQ/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 100,\r\n \"coresLimit\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "147"
- ],
- "x-ms-client-request-id": [
- "d307784e-eae9-4fd1-b531-6201db7d9e09"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "314"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvw809LDkE9OJIwKkibm076AMwwtMxtg4RGh7irUSPiz5QG28biiZXi8xuKxm0fhkIgMaIqFdg3YDAv5wxX8g213PhPumuTcjrtWtJfSc2VTeWFf0p7sqQEegbliLSKuwl/vv7QPdNdI2S3OMyYuMo"
- ],
- "x-ms-correlation-request-id": [
- "18e8484d-3c9c-49fe-ba08-0e00af434962"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
- ],
- "x-ms-request-id": [
- "18e8484d-3c9c-49fe-ba08-0e00af434962"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:18e8484d-3c9c-49fe-ba08-0e00af434962"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTQ/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ed2a0144-98e3-4baf-a5ab-d68cb19d0658"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "314"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvihkIek1RomNzRnBcf+J/V5zp99V13A4/H+qn+HFmvdXWw8vG2q5X1KzbS/xZ/C192yctM3lTm7im0QI3OmFakAb2HNDfSNHBoIgldfT1br8vhoiOphMZSALZRNkTMoTulbEkNfiJevLpRHhtioG8"
- ],
- "x-ms-correlation-request-id": [
- "0fb0b32c-8e69-4027-9884-13ada601ef79"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14838"
- ],
- "x-ms-request-id": [
- "0fb0b32c-8e69-4027-9884-13ada601ef79"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:0fb0b32c-8e69-4027-9884-13ada601ef79"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTQ/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "790ea31e-95d4-4a34-86bd-1824b4ae5fd7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0oNz+kZGCMOqylotjy0cEq/hPRPkvJ/39XWbDrAhqRABrzmbPgdG+tQKoBJ07tsDtx6r+QYFFoTmzQjG3qq1IZ3zJ0RGDT7ljSW7Y4dnC0fov2e83K0e1k1qdKTBLPnBttcuI0t3+9pM4xAljrr4"
- ],
- "x-ms-correlation-request-id": [
- "6b2d12a6-5588-44eb-8b0e-7385fe2862cf"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14826"
- ],
- "x-ms-request-id": [
- "6b2d12a6-5588-44eb-8b0e-7385fe2862cf"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:6b2d12a6-5588-44eb-8b0e-7385fe2862cf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTU/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"virtualMachineCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "151"
- ],
- "x-ms-client-request-id": [
- "0bd2176d-0b9f-4ec6-bcee-9aa9eb7a82f3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "318"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv49WrHH++WryE1kTMSpnh9vTcw4EhqjIwDzFxzSZA7vwZYbfNsBcA+lRUPU5LCX5GX6IUcQIw0xGbVPn/EC/sZKrjM9vt0T/xm6qnKBNG9UTjgcQU6VsqBYbONDqfA5sCoNesWxft6JwmsaXwYr++"
- ],
- "x-ms-correlation-request-id": [
- "fa2d24d7-e72d-4a65-893b-c503600b47c1"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
- ],
- "x-ms-request-id": [
- "fa2d24d7-e72d-4a65-893b-c503600b47c1"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:fa2d24d7-e72d-4a65-893b-c503600b47c1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTU/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1071aaee-76e5-4837-8ca3-517662fdf811"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "318"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPl1Py4Hlv7MINzZ9a1mOKkENTUQDIKhAdcc0u0Saufetxf8pBZS4OjY/CEz3y2EINLNDt2TCPC2u6k+HnE4LZ3KI0SHfwN+X8TQti3XAUqed52yF4K9An2uaNOHikkYTrBAs3P/3y/NkL4U/9UhN"
- ],
- "x-ms-correlation-request-id": [
- "ff6446ad-fd9e-4128-b2f3-f69cfbf63c3d"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14837"
- ],
- "x-ms-request-id": [
- "ff6446ad-fd9e-4128-b2f3-f69cfbf63c3d"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:ff6446ad-fd9e-4128-b2f3-f69cfbf63c3d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTU/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f6c747db-9af5-4869-b92b-16c9e11915d8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxzUdskL67CQT3ciF9aevbkJU6krZkDTNdR5Yzi0SbW59QbZDBogflSrD9WllMCEHlVVTYxSapJopuefj/w3uzhpCpWLpgC8ca66Ve/S8OuyfhfcVor6Ie0174Dqx1j1yAI8mSrL5r8tR3CJ/As1B"
- ],
- "x-ms-correlation-request-id": [
- "e4742d05-d1c5-4629-a603-96e445a531cf"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14825"
- ],
- "x-ms-request-id": [
- "e4742d05-d1c5-4629-a603-96e445a531cf"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:e4742d05-d1c5-4629-a603-96e445a531cf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6d21a530-165a-4e62-8b33-0b99384f1da3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "2190"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjWRxMj5KT1ldbpYgB/xndc+KdX+/V/TFIZLgy55GkoRSLu12azgsc5O3CPA/5hr3w5casfFnreAmbzR6X/4XYrkIkbMhxdo8rS/0m1Qk6WWhbVlq4t7KJRPKx+grOXEujGYjcyV9+nktIOvV7qFB"
- ],
- "x-ms-correlation-request-id": [
- "47be25da-fe02-4c7d-b62b-8b19f8c0ee31"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14836"
- ],
- "x-ms-request-id": [
- "47be25da-fe02-4c7d-b62b-8b19f8c0ee31"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:47be25da-fe02-4c7d-b62b-8b19f8c0ee31"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "676a40ea-abbb-4a95-bfb6-8e02f77d7d93"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "2190"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0TMMzGPci7YNqGCtkvNRggD0Du7o7/06rwSrD1BHnynlV/MoFDWsZrNLuO4zi+QlqsGRJVn/g1iWRBcXq7chAIhK/eAFSJjn8GGej3m6k/M6b5qZA/5si0uTdrG0lN40JuWZuLYt9Dh+dUCJZYXm"
- ],
- "x-ms-correlation-request-id": [
- "75d7c6e6-2b35-4984-9510-114ed184d89e"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14835"
- ],
- "x-ms-request-id": [
- "75d7c6e6-2b35-4984-9510-114ed184d89e"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:75d7c6e6-2b35-4984-9510-114ed184d89e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "762999ad-6159-4e56-abc0-577698160286"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "2190"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCQ3cSHI1zNtmLnQ35rADZ0O4CfgNI9GeVVlUCAMlmo/ZU0JcEKiuVM5xUEJUnwxoCqDJe/VY45t6SpEHQmY98J7SGwwRjeGMOJ6HefmRrRGW6spNa24n7xo+j77Xm37c1B9PB8Bsl9I1tM+Mqmu7"
- ],
- "x-ms-correlation-request-id": [
- "c30485ce-d98d-44e0-9b99-100d9ed42201"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14834"
- ],
- "x-ms-request-id": [
- "c30485ce-d98d-44e0-9b99-100d9ed42201"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:c30485ce-d98d-44e0-9b99-100d9ed42201"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "63688106-0a68-428f-9cd9-33fe76cc07bb"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "2190"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvn+yTKWy7ZQ+IatftquItV+B5C1gdwkCoY/6rZ4wv78/AhirATXYdVBcs/3FrrPE3blLn/X9eUZu+hYTqqmcRjn1Ignl49VzuEq/lQSBryCnjWxUVOy/HJUteJxsHGvVFmgr84IpJ7ibjjtYOVk/K"
- ],
- "x-ms-correlation-request-id": [
- "62eeb7d5-efac-468d-a6b9-42db4db50ff8"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14833"
- ],
- "x-ms-request-id": [
- "62eeb7d5-efac-468d-a6b9-42db4db50ff8"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:62eeb7d5-efac-468d-a6b9-42db4db50ff8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "49cee3d0-66db-41c8-9837-345c4af0ac63"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "2190"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX91E9kjWk6Yv99tq+b+mENPlrOpswvwrafFLOrDqUr47QjVRJVZbt9ETJXGeMZSPK21QUbWSSNE5ivwUxN8yq63bs0oIfWJ25N2z7YtNtBMKamvr8SByZ5htemVwXMAvBcBadj0OujJqVvauS3YC"
- ],
- "x-ms-correlation-request-id": [
- "458b0edc-bc23-4f59-8ab2-78a65eb6b767"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14832"
- ],
- "x-ms-request-id": [
- "458b0edc-bc23-4f59-8ab2-78a65eb6b767"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:458b0edc-bc23-4f59-8ab2-78a65eb6b767"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "413fc061-d08c-4f7f-a01c-0ecad57ab251"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "2190"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7rMmdw0jSn0+76TtP6HHZuV7zrqY7GIlXJVQj3dUsmGuf25LgA9553Abnz/IadCYF0hvIkyG13Dg/YvfOCv0V9bMlpDsqN1gKdK9kjt3sx8AJS3iG0QXuFk8O0lJv/52+e7NiSWYyGsKPeDP8Nfx"
- ],
- "x-ms-correlation-request-id": [
- "8d339ab2-97e1-4b96-a502-c0ca8a42b170"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14831"
- ],
- "x-ms-request-id": [
- "8d339ab2-97e1-4b96-a502-c0ca8a42b170"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:8d339ab2-97e1-4b96-a502-c0ca8a42b170"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "319b7aa3-f196-4f6b-96ca-420fd5e6448d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+A6H5wfIpesBC7dpBAUmgC875RykNGbK0GK1AKx47PZuB74PV83l2atUsbHNpuplsbSyegncEt1qbrMw6dryS67eOwG95yZJHr+5wwDOtnDPVeG2aEMYEPNETzoef68dMitO4nkWt9tiqTOqUz/V"
- ],
- "x-ms-correlation-request-id": [
- "63039e26-da81-4b99-a115-4df84aea6d1b"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1188"
- ],
- "x-ms-request-id": [
- "63039e26-da81-4b99-a115-4df84aea6d1b"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:63039e26-da81-4b99-a115-4df84aea6d1b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "93380167-6aa3-4567-90f5-38fc1faf5e32"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkXRkpVzNQ2rb2AYP66lHuxXX4pmuh0gzAtmiG6R7dOXWvxwP0XXV0RngatRaKXHIqS/Ems55B7bzH0HuVa4sik4W7BILJGS3rwJrWgTPbZUhUbwVu2SlELphpERMLBB94aPe/ien7l49tQuO0d4c"
- ],
- "x-ms-correlation-request-id": [
- "95f40b68-9395-4088-8b69-d5d0b6b28b3c"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1187"
- ],
- "x-ms-request-id": [
- "95f40b68-9395-4088-8b69-d5d0b6b28b3c"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:95f40b68-9395-4088-8b69-d5d0b6b28b3c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTI/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "28450404-1433-441f-bc62-433399952a76"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvor8dWbBAT39KJN152c8sGU/mLYcUPE+SxdlZedWHXTE4cis5eVVekFU5q9OzT2L+KBRPRtds1IsqA82g8S2VGoY3SQwLCelqWZeU/9IO7Slbwo8iCEw2MjUsAl7yuLpFbuf7FPo55tZA94osK5Fo"
- ],
- "x-ms-correlation-request-id": [
- "59091605-73ef-4fd7-afab-3802c94560f3"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1186"
- ],
- "x-ms-request-id": [
- "59091605-73ef-4fd7-afab-3802c94560f3"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:59091605-73ef-4fd7-afab-3802c94560f3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "253d38e5-2bc9-41b6-9b4b-fcfe8b42f717"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2/xXxRdSuo6WOu+uAB/4JKj1vCUYfP58bLFWEKRvJeqUW91sfEwJlS6mSEt96a5J6rD1tyj7ujMc9DkJJFrAXXohbj2Tipa2YDwXLVupXX2n2NmNt5pDKMPXhrk2KQWSlpGmbFWv/WGmOZF2bgcy"
- ],
- "x-ms-correlation-request-id": [
- "339dab58-fa74-4118-92b3-18f0307c0781"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1185"
- ],
- "x-ms-request-id": [
- "339dab58-fa74-4118-92b3-18f0307c0781"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:339dab58-fa74-4118-92b3-18f0307c0781"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTQ/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ffb7dbef-ae76-452c-bed7-cd0280ac13ee"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyDFPA7dGR/ywSbZ3EmNq554FpDNSaXgMXqvn+7KXS6j9tQ2poGODyVgbDLyk1htcjGRyN9NlZljC0acOcRhBCvkW86UI/EZnxAjIpfP4WiKTE108YQH4lvfJDBJ0/T0KlPT7Fqw6HGmsc7BRSxoB"
- ],
- "x-ms-correlation-request-id": [
- "301fc83d-8f9e-4b5e-964b-4e7122916ba4"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1184"
- ],
- "x-ms-request-id": [
- "301fc83d-8f9e-4b5e-964b-4e7122916ba4"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:301fc83d-8f9e-4b5e-964b-4e7122916ba4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTU/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "126762e8-a23c-4cf7-aff7-2bda1b5c2f2a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0S6dNvMC9cXSMMo7jwzEAR5RGNUgWjszov0fLWKib3j2eTX8m7cWAja7upxOUShu/ucigt+KlNZvw305gtWPdJKbQjryRZuATZqB6n3u+ZSaHH68X46w31HOnE5DmMwGdDOZeEFyXprNiocihbr2"
- ],
- "x-ms-correlation-request-id": [
- "9e8b726f-1258-492d-af86-339c6807ff78"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1183"
- ],
- "x-ms-request-id": [
- "9e8b726f-1258-492d-af86-339c6807ff78"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:9e8b726f-1258-492d-af86-339c6807ff78"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- }
- ],
- "Names": {},
- "Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
- }
+ "Entries": [{
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTA/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["cd93b3d9-c6a5-4b73-8894-40fb8a017050"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["252"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:50 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvitM5fSc+cRfEyLDinhPGILNuiqy3KNPsHFhbzh56+0o/1RkTDrC75XzezcGFR1h62yCs2pvBUC1Pk+HY51PElBBJUzAxgNX2Li9bGUaYOfkmQ8M9V+wOct6ycUE4OfdJg0HiWQVM1gNpQO8o/ClK"],
+ "x-ms-correlation-request-id": ["b03dd277-e8c9-4438-a778-b2be9e034f92"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1108"],
+ "x-ms-request-id": ["b03dd277-e8c9-4438-a778-b2be9e034f92"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074451Z:b03dd277-e8c9-4438-a778-b2be9e034f92"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["405"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTA/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["7c7a0b4c-9f92-4c18-825c-a653211381d5"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkDOKTmhO0UK8/eIVnjwhYsvfvWMWAIatv+VmxQ9lgNW5ifkbrK/TmrYwYs74gFpxlMXv4U26xqNfmC7W1aalIRjxjOvFwndVHSQmfRmi+BCj6l/JTUWP9DBoh0lMrlow5eOT+MdFXen+N62ThUuA"],
+ "x-ms-correlation-request-id": ["d78424d8-de61-429c-b46f-ac294c0435f9"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14453"],
+ "x-ms-request-id": ["d78424d8-de61-429c-b46f-ac294c0435f9"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074454Z:d78424d8-de61-429c-b46f-ac294c0435f9"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTE/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["0f15fd0e-2e99-427f-9ea4-4ae25de901f3"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["252"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:50 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvB59HIDUZgc73ts+MPolglBDbwyNvIS2KcluAFGFmfTr5rELNXVtgFYsqRkPsgxLssRWr/+6rcXQdtWX/6B8hiViU1guOERuxtl7OvqRuQI92p1LMM+vM9q+G5Poqugf35ZoZDBJax3QT4Lc/1Dhr"],
+ "x-ms-correlation-request-id": ["c3b8e94b-d86f-4cf6-ad34-e2b7f78ddd50"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1107"],
+ "x-ms-request-id": ["c3b8e94b-d86f-4cf6-ad34-e2b7f78ddd50"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074451Z:c3b8e94b-d86f-4cf6-ad34-e2b7f78ddd50"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["405"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTE/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["9daba1ef-1454-4965-86dd-dabf3c7931c8"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviDq/P8jq1QsIi563jvrh3oJjcHn67wNJIuwhU/BFrNEfzPWN4md0HH3WbbVjsdnpme53Bb++yqFJF3FO3p8WaegKmr0QWzrI7sm66m0/UaYOyVz5g9rEIqLVU+I8xmOGUZyuYpT1B9GxWDeTMg7p"],
+ "x-ms-correlation-request-id": ["88b05df5-4766-4184-bc99-8e63e67f6b7a"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14452"],
+ "x-ms-request-id": ["88b05df5-4766-4184-bc99-8e63e67f6b7a"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:88b05df5-4766-4184-bc99-8e63e67f6b7a"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTI/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["83d7114c-34a9-4a58-adca-b70b9f71eb2e"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["252"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:50 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlHk/C560yvevfq3ZasC+tRDHPKFkp76zPQ0RUwGwW/YpltbGl0wHEv74muN3Mw+cC5105DI7zU6Ln2VWskCc4XKKEaJLumGYlSs+Dc3Kf+Vk9QFZRYeHyjZ7c7YWdLTouKgkYedy7aE4A8aHqwNX"],
+ "x-ms-correlation-request-id": ["aa043a31-dccd-4a90-9374-c59d1a9e57b0"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1106"],
+ "x-ms-request-id": ["aa043a31-dccd-4a90-9374-c59d1a9e57b0"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074451Z:aa043a31-dccd-4a90-9374-c59d1a9e57b0"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["405"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTI/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["21d93ab0-5611-4c13-813a-9e4ef5adf3ba"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv562qufvLmeISduGAyHOBLtqKHhS1MzVKgPeaRvhZSod5Kwd9OOCBxzC+GVgeVzHazv87V8zCWdSFPn72b5Sddi3+jbqj5I/eTcpKOPMWDYhjNgaAGqpDeAScNvPbmFXRk1iX7ZnU0tFs4zwtUDNM"],
+ "x-ms-correlation-request-id": ["4a6969b6-f17a-47f3-af01-4872ea5cb355"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14451"],
+ "x-ms-request-id": ["4a6969b6-f17a-47f3-af01-4872ea5cb355"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:4a6969b6-f17a-47f3-af01-4872ea5cb355"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTM/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["0c492e82-79e1-41d4-a328-8c78cc2bcedd"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["252"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:51 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKByJoQ0VUyuAXKfXbHw6RQ50GVDTw6UnmF+l/LD3kymiSwULOuz8o2yZpKz07NL2HV/HcC7IEJZStBigiiMR2zbqGPhO2UxZXA5G9RFOhIYrMlQXDZqUf+eKFKk1Q7AjKYndV2Nybnbt4NsgdHtj"],
+ "x-ms-correlation-request-id": ["de47093d-ceff-4627-8aad-abfce962a71a"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1105"],
+ "x-ms-request-id": ["de47093d-ceff-4627-8aad-abfce962a71a"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074451Z:de47093d-ceff-4627-8aad-abfce962a71a"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["405"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTM/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["63116451-976c-4bbc-8e6a-5ea155bd3c13"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV+v5kiqleUOeauSJjx+kKUibWbYUlZERh76iLBU887qsG8STGcIjZclxcTPmil8gbY22crzi7c6nCW8XhGXLYbWW9UTc8RJ1+5egbNypyBCV/0/thnaHKJhZhBJeNJdAFydMW8B8soEITRYUzUgT"],
+ "x-ms-correlation-request-id": ["484e2b59-95fd-4fd0-bcef-27c07001f01d"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14450"],
+ "x-ms-request-id": ["484e2b59-95fd-4fd0-bcef-27c07001f01d"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:484e2b59-95fd-4fd0-bcef-27c07001f01d"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTQ/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["be97fbff-d809-4cf5-9885-5d95f529bdca"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["252"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:51 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWp6qaaZq8WyIBAa7B6wNj092QcFAXTGCuyS+Pv80hDceKNFZzmCvNCXw2WYX6p1D+9VlmDItW6FMk2IW6/TQQV6zWy0yWYnz60suZneXv6Toq4tvmuZt1ffYBc6RY37fD1Zz6qzvWCo43aCGL3Tq"],
+ "x-ms-correlation-request-id": ["b84582b7-ad29-41b1-8875-a949d0ab54e5"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1104"],
+ "x-ms-request-id": ["b84582b7-ad29-41b1-8875-a949d0ab54e5"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074452Z:b84582b7-ad29-41b1-8875-a949d0ab54e5"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["405"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTQ/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["4f32edfc-e7db-4da8-b08c-6adc76d972c6"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEts17CDasukTekS+ILESme/YYlBlZFBTYoHoWo4EwlORzt+k4aMuDKXqmpE/W9WqV8zDJXNd2rsXr5kS+tw9VPmf0Hj22daSgqSRHDRrIygSJqsSK3Gkvtp63Pz/dw43XjhbEbDURqAlaPI4dBAI"],
+ "x-ms-correlation-request-id": ["579575f6-8333-45e3-8d98-404595dbb671"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14449"],
+ "x-ms-request-id": ["579575f6-8333-45e3-8d98-404595dbb671"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:579575f6-8333-45e3-8d98-404595dbb671"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTU/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["58fd890a-1faa-4d24-bdce-332dce72439f"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["252"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:51 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvySfBD2JIyT5+IuuZrqN+7Bei9rz44oXlP12j83v/gWJr1gOBhCkGGMHhieH9520FPQdGWae5S/SrQyJ9/Bu1xKMhdL6nn2dOH7914NS+v5JpsJmGSaeWGnmUT9GzhXpLHgmSKAaLuxupZf0Ltt5z"],
+ "x-ms-correlation-request-id": ["f0457a1b-ec6d-424d-b795-ce518ef2c5fa"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1103"],
+ "x-ms-request-id": ["f0457a1b-ec6d-424d-b795-ce518ef2c5fa"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074452Z:f0457a1b-ec6d-424d-b795-ce518ef2c5fa"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["405"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTU/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["f230ce2d-0f60-4d7e-b663-c871e4daca03"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1vAX8DvOJSRwznXpTVfb3AFvNjG8r/QkG4gOgyiILVhFH4/T0xTfO4sQy7uw65peSb+Xcm0QVjc3bFyKIxdLKjLoyM0kXHGdYGsYXgX7sVnpPY9RI+RF1zrg7dgFmjKOicG/Jk3uj1IyLMo5Scxa"],
+ "x-ms-correlation-request-id": ["a132dfd2-94fc-4e21-91f9-abf29c25b2ca"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14448"],
+ "x-ms-request-id": ["a132dfd2-94fc-4e21-91f9-abf29c25b2ca"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074456Z:a132dfd2-94fc-4e21-91f9-abf29c25b2ca"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTY/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["56f4fa08-31a8-4f49-9c76-9e6251442596"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["252"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:51 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzzxdI5wIcz/KL7vcJP3gVF6V5boUwBFt9RCxFQatqi5eBjjjD8arYXBxoAUYQVDuhDrZDQQnUNulW4jCVK+ccmkQQs/kyPRS+MVjfQRnCLrxPPSOPC+IY1dqOaLU6ToYOAEu6ff+DAwr5qqMn2RZ"],
+ "x-ms-correlation-request-id": ["8517ce9e-f26c-432f-bf98-c621fb264ef1"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1102"],
+ "x-ms-request-id": ["8517ce9e-f26c-432f-bf98-c621fb264ef1"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074452Z:8517ce9e-f26c-432f-bf98-c621fb264ef1"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["405"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTY/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["c2c7c187-b6d5-46bb-850e-f7ba0cee2139"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqh89yfb22JZyhjaSUJCGPgv0t04twkwqKuv0E5999j0J0616fSFD4MNulXiqHEv1RBDwHyOjKbb+zSSxlSzFVcWQLNhAYi02hNPA67eC+fsmFiuiorI0GerwMUNZrdzhZoLqbgTjDJiQLEH9EW1R"],
+ "x-ms-correlation-request-id": ["e25595ba-5a46-4e28-849a-b5b884c439b0"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14447"],
+ "x-ms-request-id": ["e25595ba-5a46-4e28-849a-b5b884c439b0"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074456Z:e25595ba-5a46-4e28-849a-b5b884c439b0"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTc/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["685ff29b-7b0e-4407-9a83-65882a9ac090"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["264"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:52 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+VxDvWWl9M00hdg7y4hWtconMJBfT7MiT5H6xfGxboz8H3PBtJz2wFF2TXDJL/20A1qHC/jaU+YYtH7b8EkPAFxeO7+AOSHod0PKimFKSVrPx9bVy9Z5C6bfvgsbAQtihof6tfj+PxAYluN58wIQ"],
+ "x-ms-correlation-request-id": ["a6c82117-e4fa-4120-a1a4-08cef56814df"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1101"],
+ "x-ms-request-id": ["a6c82117-e4fa-4120-a1a4-08cef56814df"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074452Z:a6c82117-e4fa-4120-a1a4-08cef56814df"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["417"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTc/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["bf36a4c8-93e1-4be7-b4cb-6905d1b0886a"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOJEhf4igBZ3iaeGhaIh8eRWHm5XJtX0wQ4HxM85ZlEnA8bGyNRQ5A1pQlZGgJaChB+36qK9XfgS2Qg4OFUOBGgM6is+0rmhQiLFcEB9Tr9doIeQ6ehYvM8NWh773IV+MHo22IqLzxWxf6+2Ryw5e"],
+ "x-ms-correlation-request-id": ["869d7dd6-b477-4e57-b2aa-355cd779a10f"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14446"],
+ "x-ms-request-id": ["869d7dd6-b477-4e57-b2aa-355cd779a10f"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074456Z:869d7dd6-b477-4e57-b2aa-355cd779a10f"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTg/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["8d0fc1bf-968d-40e1-a59e-1a3b035079e7"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Content-Length": ["270"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:52 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrwV9861BInaib/TgNgDWD2/5IdMqn6s7B1oaoRSdj5088WvIDSDiDroWaYdU1vU1GQ9iRxiPxzKLhItokjzeSsSuAj+xxUwamzD9C3SZ9tfLs8NyJ0fquQ9xZJdSNzkzYd1QOBnOs6GPf7364FrM"],
+ "x-ms-correlation-request-id": ["28dc52d4-e35b-481b-9c71-a174a4e3b29e"],
+ "x-ms-ratelimit-remaining-subscription-writes": ["1100"],
+ "x-ms-request-id": ["28dc52d4-e35b-481b-9c71-a174a4e3b29e"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074453Z:28dc52d4-e35b-481b-9c71-a174a4e3b29e"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["423"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTg/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["9cc2fddb-0fdc-4e73-aef7-222c9d314ab5"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+ex/9EIqtorNBQDuiGhsJBQRJkXq7jWzag3PlSgAG+Syi25l/rNCVUYoKsxc0fL6NKk4z+OYajCWW2XTxmHcggShv2IQE2DTwZpeQB7+SN0fSEGVU3p1/WpRIOp4jQOFlirbAjtvp3QylAcCdGBz"],
+ "x-ms-correlation-request-id": ["d6887a36-65e5-4306-8e48-183383160a6a"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14445"],
+ "x-ms-request-id": ["d6887a36-65e5-4306-8e48-183383160a6a"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074456Z:d6887a36-65e5-4306-8e48-183383160a6a"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["d1915c0b-bf52-4e65-a0a7-808f36afbfbc"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:52 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWb+v6FSBdAqXTE6TqORuWXXHzYRk2dBxOaTtVtsgV0bwhUcS1sEY22lTphnpO+GQnQMhXY+90eFXrjz7y6hvSTemuoBIY4UTPFjrf4xLtY87011eKZX1XrOPwYkCKV9MvoSUl3CuSc1Tx+EBs1sf"],
+ "x-ms-correlation-request-id": ["c78bfb9d-7aac-49df-ab02-16d2c064b417"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14462"],
+ "x-ms-request-id": ["c78bfb9d-7aac-49df-ab02-16d2c064b417"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074453Z:c78bfb9d-7aac-49df-ab02-16d2c064b417"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["cd89f06d-5e0b-44ca-be8b-6d6867ee1eed"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:52 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxv7TZXVRnyuKtgOH3JmA3TjTaRPQQBjdKMcsV2vINQbI7Z0pmEXeGHfSPzkizMdaYs7YUH0z84QYvecsePf8YujySCLXO1u5R09azahDnuaK8TZJ34OuWpBnWttz47Th34zlltv6TWKmawykv7dh"],
+ "x-ms-correlation-request-id": ["e3d54461-40eb-4bf0-b7f3-404ce054ef90"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14461"],
+ "x-ms-request-id": ["e3d54461-40eb-4bf0-b7f3-404ce054ef90"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074453Z:e3d54461-40eb-4bf0-b7f3-404ce054ef90"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["bf0dab34-69f5-4209-978b-25611bac8379"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:52 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhkVXNPVdZXIg+D94VsDifH/WZLwTlz9qaGYy20Kg7hn8SYPgN5cyfWFJkWtTVBUDHKZjyeXJ2/ak2fCXKChyCG3pg6sCwyAPCe2uZyGx3/XM8MLlYqxr8FuJnNkVRsYnLmhCaWlWapIc9/Tdfch7"],
+ "x-ms-correlation-request-id": ["fad78687-0ab1-40ba-b2ab-7855e29341bd"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14460"],
+ "x-ms-request-id": ["fad78687-0ab1-40ba-b2ab-7855e29341bd"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074453Z:fad78687-0ab1-40ba-b2ab-7855e29341bd"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["091adfa5-44cb-446b-a92b-53cf7686c7da"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:52 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvy1wJFD2p6Cx1UEAaiCWZAKgv4FVR1bJBZ88K2MDBFzE5lGbd6Yo9Nwolk0ldx/4QaoT2DQIfCKVvRddu+7+XdDiQkjRKQ4aRZ0bc/VWx9VZkis8cnikYOvDQtrfab868DOHY+PdHLK0k8EUZCH7q"],
+ "x-ms-correlation-request-id": ["be64c98f-961f-49aa-8a8a-85c139a1cb7d"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14459"],
+ "x-ms-request-id": ["be64c98f-961f-49aa-8a8a-85c139a1cb7d"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074453Z:be64c98f-961f-49aa-8a8a-85c139a1cb7d"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["dc1d3909-ca3a-47e5-b27f-8e3bbeaf2577"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:53 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDQbw7qNNKb8Y7dTLgN7GOYGKtrgeHBIQFNp0dCIVobltAdd/Bwhx0hR9OW1924IcRh06vrEmedc7E1QxckZZPVUHrqyKz2sdAk1ausWy7WqWcRv46hurn62gGlUmHd3JLxLQOFw7z6UQEjPHF5tr"],
+ "x-ms-correlation-request-id": ["5c276a7a-483c-4f55-8f69-bc1d25e40e8a"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14458"],
+ "x-ms-request-id": ["5c276a7a-483c-4f55-8f69-bc1d25e40e8a"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074453Z:5c276a7a-483c-4f55-8f69-bc1d25e40e8a"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["69111dd8-5d31-4fea-b3f2-19a652f18025"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:53 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdFBsAMZU+UTk9fXib/tv53sDgtjd4+gLOCDk5LEvcKDWpGfRxZcAKnWQmzF1etOOhbF5UNrpfcJvos9JBUpAEIkPmzNYGjcseNZL86ptxg2tXvJEtzp0rtAoJxBaUZfj3Ho1wPohiGbBqAIenb0m"],
+ "x-ms-correlation-request-id": ["1cc69be1-8a12-40b8-8991-eafc9ad4b374"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14457"],
+ "x-ms-request-id": ["1cc69be1-8a12-40b8-8991-eafc9ad4b374"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074454Z:1cc69be1-8a12-40b8-8991-eafc9ad4b374"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["78269b47-cc8d-49cd-9f31-e4b262075bdf"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:53 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZcIcG6W7G6vofR1HsoFLrUw3g0ktcKxz01p0HIhshdbFd8eXt8AbpiN0FhJ21AcKsfr2MDM69+sSIW7fGVPzcDzgsGsTM4gVUG8JfQpXweCnyMNrF7QGc3lLHc47YiKDXarHWHYeVrHDHXw+hTvL"],
+ "x-ms-correlation-request-id": ["1990b069-0633-45e0-b8c6-ae9aa93951c1"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14456"],
+ "x-ms-request-id": ["1990b069-0633-45e0-b8c6-ae9aa93951c1"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074454Z:1990b069-0633-45e0-b8c6-ae9aa93951c1"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["5b8cf0f7-81eb-451b-b6f0-89ab9dfacf7b"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:53 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmt4FQ9XlMQUftrSjtr7Ba7aheaS7MyzH3YJxrfqTNFtB/nDOF9eSARl+6adz4mQ0IlEs1tIaOn9wrKiahCSna4N+fxHDNkkzwiVafvkzdVIHJf1Mq+XXF/hhvABbNrC1x7+1B8/kR02Vo8GnAPhp"],
+ "x-ms-correlation-request-id": ["e9dc796e-2ae7-4126-b5ee-7b9d3fd68dfc"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14455"],
+ "x-ms-request-id": ["e9dc796e-2ae7-4126-b5ee-7b9d3fd68dfc"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074454Z:e9dc796e-2ae7-4126-b5ee-7b9d3fd68dfc"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["17536be4-6d09-404d-8d36-9dae111a7f18"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:53 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPzdTNoNJMjJXzQWnHDzj4tFKF7pf5gkteDifxAdn/hIxM61/bagJZ5RATtDOsCCHaw8QVvQTe0LFETLy8hXySfL3Y5wvaiVHpa0hzy5HycXgyYwrP7ZOKxKOOp1xSAnqgJPwIV7iQJOodxmrVH2z"],
+ "x-ms-correlation-request-id": ["d9ace16d-294d-405f-8b54-05d4dd523262"],
+ "x-ms-ratelimit-remaining-subscription-reads": ["14454"],
+ "x-ms-request-id": ["d9ace16d-294d-405f-8b54-05d4dd523262"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074454Z:d9ace16d-294d-405f-8b54-05d4dd523262"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["63162"],
+ "Content-Type": ["application/json; charset=utf-8"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0\",\r\n \"name\": \"testQuota0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1\",\r\n \"name\": \"testQuota1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2\",\r\n \"name\": \"testQuota2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3\",\r\n \"name\": \"testQuota3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4\",\r\n \"name\": \"testQuota4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5\",\r\n \"name\": \"testQuota5\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6\",\r\n \"name\": \"testQuota6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7\",\r\n \"name\": \"testQuota7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8\",\r\n \"name\": \"testQuota8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"availabilitySetCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota0?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTA/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["d228d412-dc48-4784-a7b5-7bc9a4a090de"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:53 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7fRk5194cjeKdiJMWo6pyvAHjj3eFmP58EyTug8L74Z/i3FSwpCb1zEcHhyO4BvQ6Oh6t9fRICnkBVNA+qGyUjhWC3neDEFtzc865VOSsPWwZr47N9NhODuSTr5nmeX0aAqXJ+j0YxFd+iv/vJpa"],
+ "x-ms-correlation-request-id": ["0f3e6127-f2f9-49d8-a61d-a373214c8b07"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14963"],
+ "x-ms-request-id": ["0f3e6127-f2f9-49d8-a61d-a373214c8b07"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074454Z:0f3e6127-f2f9-49d8-a61d-a373214c8b07"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota1?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTE/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["24cb4f3c-f948-4597-b0ba-bf6c67d041a4"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqGWjwVRWnbu6cQle6LGsn4pMaSclCPGXr/BTJ7Gm7nqYwarEhaZn1XmOrgvjQZQJMytDZJklu2222FTnnspgt0ngmOJeHSgM4dVqOewcezauzdoVyPQKb2+7THM0RN320VqANcg7XTAHf6Qd4NY0"],
+ "x-ms-correlation-request-id": ["933bb7be-51c8-43c4-a657-057f8973a57b"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14962"],
+ "x-ms-request-id": ["933bb7be-51c8-43c4-a657-057f8973a57b"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:933bb7be-51c8-43c4-a657-057f8973a57b"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTI/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["f20cb785-e005-41a6-a5d9-6c0c927ddd86"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMTygaF9uBNB3+X8uP57jd87pwAzCB1pHE78ruZEfVjPIY7P5XOvActCBadnbHdBmKQ3yJXjs+GcFbM2+dw/auwLY0F5fooMTDG1TDOdOy83AL/ha5Pkj67Z8Q1b/vJUvccwlylZNlP+dOZg3TZ42"],
+ "x-ms-correlation-request-id": ["09a20487-95fc-47ec-98a4-e120466ffe7e"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14961"],
+ "x-ms-request-id": ["09a20487-95fc-47ec-98a4-e120466ffe7e"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:09a20487-95fc-47ec-98a4-e120466ffe7e"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota3?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTM/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["a343f561-786e-49c5-be6d-7f8d2967320e"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSOlnyhETE1cgfrLA5Cvvsi7m4H9lRr97CPEolBNWjqxW/n+vCXp1bH9fRm71zlPSlhq2RqJEo2zCEA4pyKZPbZGcwv6edETA7h3hd+fNH4g6SdUKzLGh993mq7aj3y0hIAkGxCAjLhN6/71l4vg9"],
+ "x-ms-correlation-request-id": ["29d031d5-c5b4-4daa-be4c-589dd21a733a"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14960"],
+ "x-ms-request-id": ["29d031d5-c5b4-4daa-be4c-589dd21a733a"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:29d031d5-c5b4-4daa-be4c-589dd21a733a"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota4?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTQ/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["645e0520-20bd-4402-b88d-5544de04e99a"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:54 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxOLc79WyJXUljG9S93NcIZj7eAo7kkE5wjmQfOH1yPBQ+w3h8RykVPXtVLz7W4M0414jWUu25J4z7kL65QE5urcsw08QrekpAMMpCfQDKkzQV6wyQxnz4KTAtB+/KGqXgIIIc00Am3yewpFkAA8O"],
+ "x-ms-correlation-request-id": ["a9d668e0-877a-44f5-80a1-7567f04a579a"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14959"],
+ "x-ms-request-id": ["a9d668e0-877a-44f5-80a1-7567f04a579a"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:a9d668e0-877a-44f5-80a1-7567f04a579a"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota5?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTU/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["f7567fd3-6fd4-4ceb-83b6-9cbc8b3dcbce"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDp7DzIGm5jp8OhVF94YuoS5h/S/Ev7mGWTbFaEg/KUFpnkE3dLgOvxo03M+ts/kL/NgUtuOHPdE2tBdTnu8C5w73GBlzW52ov3oHefZTPXFDtHqtp3WPdxesySJOqtdI327eo31A6jW5TsmuKpsR"],
+ "x-ms-correlation-request-id": ["fa81d840-b9a1-47a0-97db-1a1e5775eb7b"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14958"],
+ "x-ms-request-id": ["fa81d840-b9a1-47a0-97db-1a1e5775eb7b"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074455Z:fa81d840-b9a1-47a0-97db-1a1e5775eb7b"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota6?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTY/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["7814497d-0b97-4349-a684-1f857db1b505"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvymfFNIc9ll+DeubbYFe+rjhrK//17zi+LVhMQvxb+bkc93kGRjktjf+WixGYctmmmVWD93XCFF0EfZ0qmn698xeX9yHhxjdivKu2WFwc0uPfUaAuZBUaHHcQ46VWwx7Ziunzpr0GliBVkQSRmhfk"],
+ "x-ms-correlation-request-id": ["750f343b-23a5-47ac-ad1b-fbf8d477546a"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14957"],
+ "x-ms-request-id": ["750f343b-23a5-47ac-ad1b-fbf8d477546a"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074456Z:750f343b-23a5-47ac-ad1b-fbf8d477546a"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota7?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTc/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["e3a4222f-b85f-4fb9-88c6-6d1e709059cc"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsQoBK/1lwvgAPjmGr9x5Zgwt9+IsfZZP4J+Uljy2rrQdn0gRn5cO4aNvki5AiGNK/Q4qZ7/YZMagMYTyLFosRQyHUfTwzQ0sRQhwr8cSeOgKxs6NvwPmbcjOf6u2Vm/tuf4JqJu8+EhhQDoRlYms"],
+ "x-ms-correlation-request-id": ["4c574a9a-2e33-4c8c-8b8d-7ed92956dda5"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14956"],
+ "x-ms-request-id": ["4c574a9a-2e33-4c8c-8b8d-7ed92956dda5"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074456Z:4c574a9a-2e33-4c8c-8b8d-7ed92956dda5"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuota8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YTg/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": ["6f7b418d-f691-487f-a8ba-c3e6723ad402"],
+ "accept-language": ["en-US"],
+ "User-Agent": ["FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": ["no-cache"],
+ "Date": ["Wed, 01 Aug 2018 07:44:55 GMT"],
+ "Pragma": ["no-cache"],
+ "Server": ["Microsoft-HTTPAPI/2.0"],
+ "WWW-Authenticate": ["oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5qFNlDGGIqizGkYPBv4tHHjgMZ1RMzkzKovM4JtYAvzuHeiCGOqA+PZxS1Dpz+7EkvlFy6vg5QMAph8uaiMONWASLrOuDuA55BueZDntCE7AZLu91hx6evQJyJvgrqQT5uDuXrll9f5pFsvN79dm"],
+ "x-ms-correlation-request-id": ["44eec11b-e927-48ba-b06a-d210d63b0e39"],
+ "x-ms-ratelimit-remaining-subscription-deletes": ["14955"],
+ "x-ms-request-id": ["44eec11b-e927-48ba-b06a-d210d63b0e39"],
+ "x-ms-routing-request-id": ["LOCAL:20180801T074456Z:44eec11b-e927-48ba-b06a-d210d63b0e39"],
+ "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"],
+ "X-Content-Type-Options": ["nosniff"],
+ "Content-Length": ["0"],
+ "Expires": ["-1"]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }],
+ "Names": {
+
+ },
+ "Variables": {
+ "SubscriptionId": "76e76204-5941-4536-a963-e630729ea4c3"
+ }
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateVMExtension.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateVMExtension.json
index 74426bd859bd..ae3aa561f2b3 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateVMExtension.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestCreateVMExtension.json
@@ -1,8 +1,69 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b7d7510-9455-4784-b03a-5f4c7f13281e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 07 Feb 2018 00:08:08 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAzi3mM5J7996pwA9RQ6732gS33wbduB2dtNg6/H7wOWP59J2M+VNbIzUXFM6tyF7kulM+d3eCVhW3Ji4vVGl/l6yyo5PYn6TCPNQc5QyxYmJmDJgFA/YqKOLeRPrYb5GCc7EA8NBFWlKwXV+d/Ul"
+ ],
+ "x-ms-correlation-request-id": [
+ "92603d2b-95f5-45ad-99b5-3f72a759f9aa"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-request-id": [
+ "92603d2b-95f5-45ad-99b5-3f72a759f9aa"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180207T000809Z:92603d2b-95f5-45ad-99b5-3f72a759f9aa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
@@ -13,7 +74,7 @@
"308"
],
"x-ms-client-request-id": [
- "bba7eba7-efee-4270-90df-4212c8c81829"
+ "2a638a31-fc40-4a3b-aabb-735e03ba33cc"
],
"accept-language": [
"en-US"
@@ -23,10 +84,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "575"
+ "590"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -38,7 +99,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:16 GMT"
+ "Wed, 07 Feb 2018 00:08:10 GMT"
],
"Pragma": [
"no-cache"
@@ -47,19 +108,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNduuqv9ZEbmK4piLZ+RGce+vRfT8F/LbQwPw7z2tpvXrNKl86FMKPsV5D8gVRSuGN4rQzsaCKYhG22NgPVBtbx6vu3Sw8yaEmAwDOLvxeNQgEMcN0wsICvFFlN0BQzVr3nVvg4IckZQTdxsCx3I5"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2vEK2xO5xMkdZLmjFVzX2I0ohfR1GX8UtWIfB0uYaeFSHVT/UG7SPHyoyAj3K4yn6MIko8A6XFnE/SyvCaSLMywW/B2Y05SnG+MZyca7hp2JYZMTohQZl02MnadrhER9ItZ7qHBE4xlP1S2qytfU"
],
"x-ms-correlation-request-id": [
- "6fd6b71c-436c-430a-92f8-63ca60b4d280"
+ "22a371de-83b7-4b7b-8ae1-cb9904afc4af"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1179"
],
"x-ms-request-id": [
- "6fd6b71c-436c-430a-92f8-63ca60b4d280"
+ "22a371de-83b7-4b7b-8ae1-cb9904afc4af"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195417Z:6fd6b71c-436c-430a-92f8-63ca60b4d280"
+ "LOCAL:20180207T000810Z:22a371de-83b7-4b7b-8ae1-cb9904afc4af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -71,13 +132,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL2plcmZmL3R5cGVzL2lkay92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ec241ff-33d5-4296-84bd-7f00d1a18388"
+ "162e8160-afb5-4ddc-83a1-afdd49d05905"
],
"accept-language": [
"en-US"
@@ -87,10 +148,13 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "588"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -99,7 +163,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:17 GMT"
+ "Wed, 07 Feb 2018 00:08:10 GMT"
],
"Pragma": [
"no-cache"
@@ -108,19 +172,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvavyWsa6z3EdUJdfCCR+4G6FaU5S+gS3XWpgMTrkFIyBXCeFr9JjTk5pRjtDsxSryyCwMKCFujonO/q9L3bLJi7jR11dnMRYV4i5yhe32SASdm6+2LXmx03/IJgTfJoIs0BZsBuvW8G8UZTlffPe2"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/T8IciQMR9o+faMkDQNm0aFyPn7IkpsUiPshHz5VIcrFDL4SwnlgMD8ObBnM4sAvSkEQV9gz2oph1uS/BtnKcS4mVQw6nmhIAyGbZHZfoSOlXKdh4EFjv5buuIRNDlTt/cEGsoiwTpM2Lw0TNdoN"
],
"x-ms-correlation-request-id": [
- "8730b1f5-b022-4297-8c74-4942adcbdab5"
+ "f175f760-4d30-4596-b25d-350b7572ca7e"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14641"
],
"x-ms-request-id": [
- "8730b1f5-b022-4297-8c74-4942adcbdab5"
+ "f175f760-4d30-4596-b25d-350b7572ca7e"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195417Z:8730b1f5-b022-4297-8c74-4942adcbdab5"
+ "LOCAL:20180207T000810Z:f175f760-4d30-4596-b25d-350b7572ca7e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -134,6 +198,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "8158498d-27b1-4ccf-9aa1-de0f925731e6"
}
-}
+}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteNonExistingQuota.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteNonExistingQuota.json
index 100a9c83cec6..ba44cb644600 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteNonExistingQuota.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteNonExistingQuota.json
@@ -1,35 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/thisdoesnotexistandifitdoesoops?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3RoaXNkb2Vzbm90ZXhpc3RhbmRpZml0ZG9lc29vcHM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/thisdoesnotexistandifitdoesoops?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3RoaXNkb2Vzbm90ZXhpc3RhbmRpZml0ZG9lc29vcHM/YXBpLXZlcnNpb249MjAxOC0wMi0wOQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b216b18d-56bd-4ead-89e9-4dee59d1982f"
+ "e50cad44-70a5-41e1-a39b-9a52333aadf4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
+ "FxVersion/4.6.26614.01",
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "",
"ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:22 GMT"
+ "Wed, 01 Aug 2018 07:44:57 GMT"
],
"Pragma": [
"no-cache"
@@ -38,32 +31,39 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRMkDdxzSEAj4vdl8KoBlrThAyT8l2gKWX/ee7zc7em4Wxt4Z4l5Cmi89m3X8h+c5w0uJQYu/B3ERTZ3ineEBqNZlbhpwjU7aYjLpKUnFEtwu/c8XKsyuTH32frjoyGiHIZ/bmikgh/X8Mow/YdZ9"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVvqiRaqvHw//+v8CJsMvqy/mnAaKvmxbWmnHL98yzP/X8zgFummBZj7D5aNXtgxVfOvwQfYThC753/WKIPyr1t2EHKMN40z0RACrwqWmvCCHt5+HI4c075D1s6iMv4EHZgPWJ20EYHcxRfrCTWbQ"
],
"x-ms-correlation-request-id": [
- "15614498-36d1-40c6-863e-56847272b10a"
+ "fa921f71-65e4-41ae-8ae7-e2582c5a04e3"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1182"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14954"
],
"x-ms-request-id": [
- "15614498-36d1-40c6-863e-56847272b10a"
+ "fa921f71-65e4-41ae-8ae7-e2582c5a04e3"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195422Z:15614498-36d1-40c6-863e-56847272b10a"
+ "LOCAL:20180801T074457Z:fa921f71-65e4-41ae-8ae7-e2582c5a04e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 404
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "76e76204-5941-4536-a963-e630729ea4c3"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteVMExtension.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteVMExtension.json
index f4e8c0cf5bba..3ae11e954fad 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteVMExtension.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestDeleteVMExtension.json
@@ -1,13 +1,211 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "308"
+ ],
+ "x-ms-client-request-id": [
+ "aa28c139-a5f8-4f4f-9cc5-4dd877617815"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "590"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 07 Feb 2018 00:13:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTVQ92NiwB+mRuXg4HLbr21eWLgUu8+QTJDtKca7Felg4esZWvkJQnqWWf9kaVwNlEdwU77oaWRFYE3EofBYLFX2QR3NWlzxre1g4f8mWNHPvV3iEpWmq28wmZ2yNV18S16+xzH5W/QiUIwnTb2oY"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8fe618e-5b57-445b-99b9-bdd709c25b8d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1165"
+ ],
+ "x-ms-request-id": [
+ "b8fe618e-5b57-445b-99b9-bdd709c25b8d"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180207T001339Z:b8fe618e-5b57-445b-99b9-bdd709c25b8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9ab46ef0-2a16-4142-9031-55c91913c830"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "588"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 07 Feb 2018 00:13:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVgrSc682+6sGUtMU3rCcwuHRdv1M/0J8o3J37iXL/iD7v+TzHpZgx3l9ZNf3Mf2qhmyvxXEPaSp/XDV/DmNtrCERbGzCSOunPV/0MsoqKZjdJ1M1fhMu+0QgWDZL4Oazp+lJENEHMBFoxNeQFgts"
+ ],
+ "x-ms-correlation-request-id": [
+ "60ae8fcd-8b4b-40d4-a448-7d98e155fbfe"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14598"
+ ],
+ "x-ms-request-id": [
+ "60ae8fcd-8b4b-40d4-a448-7d98e155fbfe"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180207T001339Z:60ae8fcd-8b4b-40d4-a448-7d98e155fbfe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "807f7014-a1c9-421b-87bf-2754860851ca"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "588"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 07 Feb 2018 00:13:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ5R6MDDgVH0s/Ig7ah9+lQX01xUoqLSWhLhWi2M1uAj2y3gPyMhzHX3/6el2WosPocB+Ux6F6HNd+FOVWXqTSvNsHM+aacU5Lo8WV5IA6/VT2luhiIn82IcyYSB2e8gp3rUGlmIQ9KEgwiu+3oKT"
+ ],
+ "x-ms-correlation-request-id": [
+ "69402b59-ac0a-4736-846b-4f78c785e384"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14597"
+ ],
+ "x-ms-request-id": [
+ "69402b59-ac0a-4736-846b-4f78c785e384"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180207T001339Z:69402b59-ac0a-4736-846b-4f78c785e384"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e7f0eb7-a0e1-4f29-b3af-864087e3bcea"
+ "09018000-0594-4df4-a538-ed699e6e5fd2"
],
"accept-language": [
"en-US"
@@ -29,7 +227,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:17 GMT"
+ "Wed, 07 Feb 2018 00:13:39 GMT"
],
"Pragma": [
"no-cache"
@@ -38,19 +236,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8nsHoamFmrOlJQlg1ZKsSV2NboOaZ/Gv4CqzYI/CSGl6QlPhOjiv1CRDQYH59npaD1I07U145zgxDIsOdlvtldher4tm8maWoqiFtZxeTrZd1o9PVkZcx+5JR3pI2UAAoEgY91ShmxNgFDgmRLmk"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwutPfLcZGUoIdpdZ88PWkE4dRXuf9hw/WUImrTNI3uz+FxxwBvH42oyhqvXTZGh4W0jy14HjKbdeMT39g24+Qp1OET2e9T9NpRryTWq4lX84WhP/8sp2JR9vHO7rP/tHmGXFfxNaTdgZ3t9IBWMw"
],
"x-ms-correlation-request-id": [
- "ae9d1e3c-83ff-4295-ac2f-9dab2442c401"
+ "6e8a2cee-dda6-4b0c-8982-a3b2b4e803f6"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1164"
],
"x-ms-request-id": [
- "ae9d1e3c-83ff-4295-ac2f-9dab2442c401"
+ "6e8a2cee-dda6-4b0c-8982-a3b2b4e803f6"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195417Z:ae9d1e3c-83ff-4295-ac2f-9dab2442c401"
+ "LOCAL:20180207T001339Z:6e8a2cee-dda6-4b0c-8982-a3b2b4e803f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -64,6 +262,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "8158498d-27b1-4ccf-9aa1-de0f925731e6"
}
-}
+}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllQuotas.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllQuotas.json
index cae1e6769b28..4577e8f1043b 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllQuotas.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllQuotas.json
@@ -1,38 +1,7708 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c40da6f-66d9-4971-8cdd-8611882e9bfb"
+ "72555133-28c9-4631-b48e-efbad4e359dc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
+ "FxVersion/4.6.26614.01",
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVOCABuordYAjr/we0qAIbtLy/UhuIyNpY+ui8c5E6FxIVeYJpZBkh6HvwHp9ZshTnf4YGR5W4vCDZW7uVB7lV//A++Ef8Snh39zYHfSnkdTGV8Qxvas90gEUvY3Eh7/m0wUhvcIOTziMPWVjPli6"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e0173ba-32c9-44c3-996c-6b050616ecdf"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14594"
+ ],
+ "x-ms-request-id": [
+ "1e0173ba-32c9-44c3-996c-6b050616ecdf"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:1e0173ba-32c9-44c3-996c-6b050616ecdf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "59478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2FzY2FuY29tcHF1b3RhNzQyP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c3b7538-1762-49b5-9aba-0991376b903d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE6Cg0oS6rDCw9xFAUWo2D0ZcNmC7XmmdOQ0S2nvKH8yN7lKb4fU7gTSyqk29m3D9uNuQ0rIlMqq5wZmoq5LWYHIau7wWFHecyHwX31DxGj/ng6gxNjGGc/8gNUx2/OGj6GwQEutY2caiefd17gUs"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc7078dc-0aa3-4ad7-8956-8e30e1113735"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14593"
+ ],
+ "x-ms-request-id": [
+ "bc7078dc-0aa3-4ad7-8956-8e30e1113735"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:bc7078dc-0aa3-4ad7-8956-8e30e1113735"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "426"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTE1Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8a0124e-f6b8-403d-a1fa-44aa8bd91719"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1hedWDtzjLXyTfriqHP5uwYnDGh1Wge5n+p1s+ke0PgswUMiiJM+m3q/gw+szI4V+kkN+DCRwpNS+yV77NcNXoac5HJyl8ftDfPlFnx6GcHx3Tv43beb8IeDyE54ZKaUPDC/LRAhoS0+m7rBMeBK"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc8fcf19-5e9e-4fda-a0ae-e09fa0378ad8"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14592"
+ ],
+ "x-ms-request-id": [
+ "bc8fcf19-5e9e-4fda-a0ae-e09fa0378ad8"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:bc8fcf19-5e9e-4fda-a0ae-e09fa0378ad8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTE4OT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e96f829c-68c8-4d66-b51d-a7929ef1f794"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGSdKJ0N5Vt9c0czt3SLz/dDLMV5iiPkqsNPJEnpyJl9d2JZRSNPGH478wImAXPgjjrRruaS6fUykauSXLMTKnFa2wNZo508MsEEQsTyvYMPyJMfQAHsvbZV5+ZYTeyU06WeZAcwM7N+L7NLSqj7n"
+ ],
+ "x-ms-correlation-request-id": [
+ "37d46f39-423d-4c8c-a5bc-9ab01bcff874"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14591"
+ ],
+ "x-ms-request-id": [
+ "37d46f39-423d-4c8c-a5bc-9ab01bcff874"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:37d46f39-423d-4c8c-a5bc-9ab01bcff874"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTIwMT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17f36c1e-a196-4623-82d8-ad33a29fba96"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvM+zELnfwtnKbx/KnEv5BGOpErdoEjcGRLavE9/l9tanaIdmA6e0wJYzFcEdB0L6hGc45H8BOluPdfrDwg1qOnlpZ+fFVf6SUVXe2m4PHYv86BWkXGLqBX0L+KDRot7SZuNt6n16rTsgtUBM8+oUo"
+ ],
+ "x-ms-correlation-request-id": [
+ "77ff9298-1a8d-4b56-8df3-d70edaf01be5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14590"
+ ],
+ "x-ms-request-id": [
+ "77ff9298-1a8d-4b56-8df3-d70edaf01be5"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:77ff9298-1a8d-4b56-8df3-d70edaf01be5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTQ1Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8c2adaa3-9549-4bc1-8d45-7c31ed72c180"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDEvA3WWUCKp/E3193L0O8KJ/RyGMSLRM/NZSgMd0s54Gnr/oeWYTzraqTOeFmBbEhKkXXA+GM9ZzPZEcwOKHcufyix5P5bbFp52ltFD06TZZ5jF7bvJvqNCCBbKAcxvsXFQOxovfpDuUOsEbyp+N"
+ ],
+ "x-ms-correlation-request-id": [
+ "47215030-7473-42de-b50f-245bcaf5e133"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14589"
+ ],
+ "x-ms-request-id": [
+ "47215030-7473-42de-b50f-245bcaf5e133"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:47215030-7473-42de-b50f-245bcaf5e133"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTUzND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8cc7503f-91d7-4a90-9527-e2050d453858"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdT2E9DG+hniaCA10gsmfKb6OHJIMuHvTUu6GtksLB+ugKHhUgyE5rb8j9MFz63Rr0eCau4/pKXYbl2aIefSodTrG23NRXhNZbkFdE5gaO2OAdBofnOq5oNafrKOS8OtnPAEW4TFq3wKNZUvm8laF"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cf95877-6fb5-4c8c-aa44-3d441ba0fbc7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14588"
+ ],
+ "x-ms-request-id": [
+ "2cf95877-6fb5-4c8c-aa44-3d441ba0fbc7"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:2cf95877-6fb5-4c8c-aa44-3d441ba0fbc7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTcyNT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "486c5dac-e65d-4da6-909c-831e895c2e38"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyOOLY3/U+2Y2YFhmuNv+Xi0eKRHsSiv6Ert/wOjrLH/ijqxRa92f5pFbPUKzn0abDBs6JK2yDNZ2ATz5lvs7ZDV9k3WgddAZ47gmJmB49nEWsiQpr1KlK6RfS+BnRF0JvuVhEF+Q/mOML6D3z1/S"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8147e18-c154-4a5a-a671-0dab50e4b717"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14587"
+ ],
+ "x-ms-request-id": [
+ "c8147e18-c154-4a5a-a671-0dab50e4b717"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:c8147e18-c154-4a5a-a671-0dab50e4b717"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTc2NT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6127b2c-b60f-48a0-9df0-2e79ac992dd0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvI07NWTuXHeUf2gAtSUp9OU6dl73IErhVb1qXFDc79lW+frA12YbpJxUr0h8N09YRM+sZVCO81KjFi+TygJq2pZzuFzIrb7jvo7/+oS+98hKqZbV6XdACgxShOUc38LbL+CzDPnKsDtiWNfr6gpbr"
+ ],
+ "x-ms-correlation-request-id": [
+ "549c7fe2-1c0c-482d-b9ae-3c816a454891"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14586"
+ ],
+ "x-ms-request-id": [
+ "549c7fe2-1c0c-482d-b9ae-3c816a454891"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074438Z:549c7fe2-1c0c-482d-b9ae-3c816a454891"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2NycC10ZXN0LWFkbWluLXF1b3RhLTkzNj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d69214c-36cd-4150-bd1c-39a9ac56ecce"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1m+8K13eJJOEduh1Vt9ou+ggGpSVt8QCW7yxuoZ5pc0yc7Jh9Hqa4HdJGpDWpmXMKcsZuJLRX98trHU05JgpbjdYYZy0S7AyuMoOIn4Qb+FK+xsqTpIuOIyel+uwjvCTRxbzbCshmFpXcKnZzAJq"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce139eac-8d0f-4973-8322-7f3cf2910ac9"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14585"
+ ],
+ "x-ms-request-id": [
+ "ce139eac-8d0f-4973-8322-7f3cf2910ac9"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:ce139eac-8d0f-4973-8322-7f3cf2910ac9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default%20Quota?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0RlZmF1bHQlMjBRdW90YT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7dbb05a8-6d59-419b-b489-26a9f8cadb76"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEl/y8soNww57jR8Te+RPK+9TMe3WWs0Hyigufz7+L/2mOVvUTTwjVv7EI2nlIURHS1wqDa64VJ7o1yFDQWOtAcF7hKtUFxQqZOF/g/NDzZW8591Nt5I7I34Avx1RlwfP2EddwlIKbYkrddFf5UUi"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef81570b-6d9b-4f80-830a-44784c37f89e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14584"
+ ],
+ "x-ms-request-id": [
+ "ef81570b-6d9b-4f80-830a-44784c37f89e"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:ef81570b-6d9b-4f80-830a-44784c37f89e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "415"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzAwODkzYjI0LWNiYzgtNDUyYS05NzViLWU0MTI2MTM3NGZmND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a5b4e8d8-d4d5-4aa6-a508-ad07c362e8a7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoswWUE+tU9Wd614mR08LOesu+7JEMhwrG4/hrW0KZdoUuNeyfvM7pY2zeHh5hTQn9DA0Q3mwxYTTjjK1y5vO3kTmo7LAX7uG3dX+pPn0PvcdLforXOdHh8kR1WHw+UR0zh1H3HslP/LI62sKhw1g"
+ ],
+ "x-ms-correlation-request-id": [
+ "d13f9827-7c05-469b-a5d8-7dbb880f204e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14583"
+ ],
+ "x-ms-request-id": [
+ "d13f9827-7c05-469b-a5d8-7dbb880f204e"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:d13f9827-7c05-469b-a5d8-7dbb880f204e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzAxNzNjZTJkLTMzMzUtNGI3ZC04OTIxLWRmMWI5ODdlOWUwNT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64d2e6ae-f4f1-4881-8c79-a7eb8dcd7f1a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSjHcHS6NGckBJIA6EW1Cai8UD3iumVMb9Tnh0thCf9DJOAw3noR/aEMLOfPYNS/Z9ll7H5xTncHa/QkRMjH8Jg1x/N7PJrKfH/h6VljOx8m8zUOa2cpm/ZicsU1xevYN+WNYK0DzKHv3Tp7EsmK+"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc4df3fa-ed98-4e5c-96ef-5e2575e1065e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14582"
+ ],
+ "x-ms-request-id": [
+ "fc4df3fa-ed98-4e5c-96ef-5e2575e1065e"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:fc4df3fa-ed98-4e5c-96ef-5e2575e1065e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzAyMDJjYWJjLWNiYTEtNGU3NS1iZjkyLWY3ZWRmZWZhMjJmZj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "21fd78e9-0d24-466b-8819-1f73bffeef45"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFm9jKUDO6rJS88vWVlc02OMwcSxN0yiPX4lWxZSy3M2N9bvR+msJ5LBK3oX4mXpCm29N1DCAMor7JbNuLGUg+3BouNUk1HXSbfD6LtWwWzhjyOpgHC/TnK326QkfeBwl92XXwr2U6tBhQHUlrk03"
+ ],
+ "x-ms-correlation-request-id": [
+ "948c2053-dc10-4959-ad09-edc8260957a1"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14581"
+ ],
+ "x-ms-request-id": [
+ "948c2053-dc10-4959-ad09-edc8260957a1"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:948c2053-dc10-4959-ad09-edc8260957a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzAyOTY4OTZjLTEwODctNDFmMC1hNDc3LTU2NmNkZGYwNjBiMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c70e59f9-ff82-4bb3-9ff5-c224a14f7fa8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWnHR7IeLQ14eckie7TkkS3RlE9b5tULq8SB7J1vfzxv1BoEa3XLyeOfnvPZhPtQK1TDZ6w96p9JRE1W+uNFPRAj63XJkr/8IeqgsA8vuEq8zMX0+46NQN52sQ/3tIcoHDddQgHzIZbaPTbL2OvkH"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2adb993-2aa6-4a12-af2e-b5182916e419"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14580"
+ ],
+ "x-ms-request-id": [
+ "d2adb993-2aa6-4a12-af2e-b5182916e419"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:d2adb993-2aa6-4a12-af2e-b5182916e419"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzAzMDIxMjc0LTgxN2EtNGQ1NS04MzI1LWFiZmE1NjkzM2QyNz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "09730449-d797-46a7-ab57-d31f4d0d3e82"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZtShSvAzJ1BVvYC33YvCHHzFP5hde0y6S3idsUAWwQBGrmpLGTSuvkXyDu8U/etaoRC8r/Mu86RbeWDPfz4xZK/HJZXFVnQ6mnbNYBV65/+DoDvtTVU4pwokWM0/XnRxsXHwockBU/aXbeEkDtw8"
+ ],
+ "x-ms-correlation-request-id": [
+ "8380f493-198d-422c-856f-8fd490917d8d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14579"
+ ],
+ "x-ms-request-id": [
+ "8380f493-198d-422c-856f-8fd490917d8d"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:8380f493-198d-422c-856f-8fd490917d8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzA1ZDU1ZWRlLTRmZDItNGEwYS1hMTU5LWFlZmIyMTlhMWIzMD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c449ff41-c863-45c6-ac52-9f0cae7b090b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZXrSx6X2JECm5OQM/uMOmkKMhR/AW6hae094FyHfeE5n6a++y9gREih1AtWzFTQIchbtBgfLaQaavgu/p6SkOeiY70xWPAW8nylrvEPdLEMrOM/LkrieYckVru9AWBhvVMS4rtNCzmKvejBSJf7m"
+ ],
+ "x-ms-correlation-request-id": [
+ "3781bbff-8357-42b7-b820-f07b601517d2"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14578"
+ ],
+ "x-ms-request-id": [
+ "3781bbff-8357-42b7-b820-f07b601517d2"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:3781bbff-8357-42b7-b820-f07b601517d2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzA3MWQyYzExLTIyMGMtNDEzMy04OTA1LWJmYmU3MzEwYTNmYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "83b383ee-b011-46cf-b2b6-005b92b16b87"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSIdxQx2dvrHg3mKBZE3nZB8HyIc1xvY/Kqh00AwV2J5reS3WEWEe1tbxz9i/jmOS0Q3r0kM0x1BmNCri9O025wqE6zhDdHooS+bPMOYTDwofWCPE4dOggfP1CE+9LrHEEyKoSu0MY+SC3LotACeP"
+ ],
+ "x-ms-correlation-request-id": [
+ "eedc12a7-5dd8-4592-8507-84409359304c"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14577"
+ ],
+ "x-ms-request-id": [
+ "eedc12a7-5dd8-4592-8507-84409359304c"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:eedc12a7-5dd8-4592-8507-84409359304c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzBiMTkzMTQ0LTNmNjgtNDVhOC1iZmJiLWM1M2QzYTNhOTMwOT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a22aa0ed-204e-411d-94a6-5afed511cb40"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEpnCPQ0aNLk5erCy6G06P5N0wC4YX6J3+BO6reAYKzulgZZSk7KmUlCRaJKCxSkFrDZG5XnjQNsRn2ka97gXNCgvfr6ltxTcyRfuywrqMpx1UyfzLRr0oY77IzkyeD50TBFDyHi/YtKh3P7J/vOq"
+ ],
+ "x-ms-correlation-request-id": [
+ "6da41c68-4137-4465-87ea-7bf05a099be4"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14576"
+ ],
+ "x-ms-request-id": [
+ "6da41c68-4137-4465-87ea-7bf05a099be4"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074439Z:6da41c68-4137-4465-87ea-7bf05a099be4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzBiMzIxYzM1LTkxYzYtNDQyMi05YTU2LTA3ODM0YmJlZWU5MD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5e7cc7de-872f-43c6-b958-204f4b760932"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMKibomh55RrvGEKFQKkDZ8Rm20Qiu8Vb+D+DZedR0nt7JnNlotfOoeOjqVJiLB1Q/ZozKLPnhGNCzXQF3q2JkjEtNV6M5BMw92ejXw8eeyxLXFFbC2zx3Nm5KiF3oDZEpxsDLEv7ET+HH8n2DdRZ"
+ ],
+ "x-ms-correlation-request-id": [
+ "60e23065-d363-4606-ba44-dc1b558f55ad"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14575"
+ ],
+ "x-ms-request-id": [
+ "60e23065-d363-4606-ba44-dc1b558f55ad"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:60e23065-d363-4606-ba44-dc1b558f55ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzBiMzc1NDg3LWVlZDEtNDY0Ny1hZTYyLWY1NzIyMWYwZmMxZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fe58f42-2994-42ef-8ff2-4d3b2263adba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxl8M2KLufRPdKXbz3e+3Y/ZrEPGXMBOewV1d+bq/8zL1fjEyjl2M69QdCC0n9O6IC7yo4eI8WD5a6pEEFdUAXxuO08LVIQPBopzMkD/Unm/kwRHG0YVvDVGVShFUk9uzPBDAABZhARcFEJ6lCWct"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e5fbcd2-d014-4114-9792-f49474b8d5ee"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14574"
+ ],
+ "x-ms-request-id": [
+ "1e5fbcd2-d014-4114-9792-f49474b8d5ee"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:1e5fbcd2-d014-4114-9792-f49474b8d5ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzBjNjU4NzI4LTQ4MzEtNDBiMS04MjlhLTg4M2RhOTU5MzYxOT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01340621-44fe-4f5c-b0ed-fb201f489a9e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfmvqgU8CaxeQbd7j+jBi4ZlYOyQ+3fnd7cnylL2DRySetB0YEoH3iLwg1GJr/X4POwkUmLZKDwPRf9n7pFIVH1CxS6Dj/a1uL6UxN4bB95hb2NUAeIYsFoIQsQ8EtoLAf/AaqQU4dtRNhbxuMDu+"
+ ],
+ "x-ms-correlation-request-id": [
+ "f23b4166-df89-43c7-a6d8-1e948f264b22"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14573"
+ ],
+ "x-ms-request-id": [
+ "f23b4166-df89-43c7-a6d8-1e948f264b22"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:f23b4166-df89-43c7-a6d8-1e948f264b22"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzBkNTY1Y2IxLWNiZjQtNDA1MS1hNjY2LTIzMDRjZTRkZjFkMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "145aaa3a-b03a-4270-b4db-7b02aeb4ec93"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN79utCL12dPb31sTOMSLvLbNu5BevkwZRvqgXfQEmpHlJvt5fcmjUO22DTEp86HkHOBV7ibHbHqLkDBJGc3Z1L5cAvkRFkV7wmZZoi6xD9fUJpF9+tkRNM+4NpP9hoRlxsa/NFfOmrW+9dtXPgxj"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffe5e38f-c538-49d7-8651-4743f91fd42f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14572"
+ ],
+ "x-ms-request-id": [
+ "ffe5e38f-c538-49d7-8651-4743f91fd42f"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:ffe5e38f-c538-49d7-8651-4743f91fd42f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzBmYjI2YzBmLTFjNDUtNGQ2MC05MTQ2LTNkMTdmNWViMzIzOT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d956388-a699-4039-b5c1-cfb6007c65a8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCrxmISPpoDx9EvHvirrw8PSvLy3jYWbsm+MnOyRfW/mb/RAhjh+gA2IuwkVWXhi5QVsmOs+EoYHLW7gq469b08pkU9QKJxOCr/xFjijzQJeQz5WXTWLlFc6PUc1inFI0OVFJ+V1ylMjBywj14cTP"
+ ],
+ "x-ms-correlation-request-id": [
+ "60ae94b8-6791-4809-90df-b7896c44ea9f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14571"
+ ],
+ "x-ms-request-id": [
+ "60ae94b8-6791-4809-90df-b7896c44ea9f"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:60ae94b8-6791-4809-90df-b7896c44ea9f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzEzMDBiNmY1LTE1NjAtNGExMi04YjAxLWMxZGM4NTRiYWQ5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0eae8b51-972c-41c5-8cc4-c86c0e13de55"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5aiBCuQ1bblVxWRSloIpgDsCU/lma/f7cxzB1nNbVBIYvVKONWHVKW6iroXwWtEANn4wKfrbQ9FxVs+5wwkOjJgeCuyxGiZahJZDl8Y7V86HdCAYCGwBnDMIqwT7OXIJd+mkSq1TcE0zEq6tZ4dW"
+ ],
+ "x-ms-correlation-request-id": [
+ "303a88fe-b3fd-4b25-93fa-050a12b3e7ab"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14570"
+ ],
+ "x-ms-request-id": [
+ "303a88fe-b3fd-4b25-93fa-050a12b3e7ab"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:303a88fe-b3fd-4b25-93fa-050a12b3e7ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzE1YmVkMzZiLTZlZGMtNDIwZC1hMmVmLWZhZGJkNGFjZDhhMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "869bd2cb-ebe7-4cb7-b9b8-59915e72e482"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvODibpj8eKLz7eNVTfAulKiXikf9BaRDO/vJ2DQhfy/p+lZ+NEp+117Losni9YlxOMpzP9ZZaL5DO/HpxYWdkNEiZ2kuOcbVrE8W7s6AvkCRXPB29k5vtQVzbQlXPH/S1iB9GmPMJyBVT2zNHxHeV"
+ ],
+ "x-ms-correlation-request-id": [
+ "e751c9ef-3e95-4338-9703-f1a7c2d914da"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14569"
+ ],
+ "x-ms-request-id": [
+ "e751c9ef-3e95-4338-9703-f1a7c2d914da"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:e751c9ef-3e95-4338-9703-f1a7c2d914da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzE1YzQ0NDViLTg1NjQtNDE2NC05OTI5LWI3MjAzYmZiMjllMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "293ac892-9994-47c4-b1e1-b9b907536461"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvScnUy1mqHkcFcMtzkd83Ku6Fu/b2M6RSGdlMOk7diuoRVduUqdbjb2wssGOjcXKwTOhHWeNUDCYJdwvIeHFbatUAYaUfmMmxZUhcEWZkJNEZ8tniKTF+ZVBkYt/mfiuyDBo+BZVKdZgVdNFhaGJx"
+ ],
+ "x-ms-correlation-request-id": [
+ "115b01fb-1445-454a-bcfa-be5d362afcd6"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14568"
+ ],
+ "x-ms-request-id": [
+ "115b01fb-1445-454a-bcfa-be5d362afcd6"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:115b01fb-1445-454a-bcfa-be5d362afcd6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzE1ZmEwMGQ2LWE1ZjktNGYyZC1hOTY0LWExODEyZDc2NzMyNj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c16bb520-7d1c-4ae6-8cf5-f07318eb9b49"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvynXWyscOK8f3hDoWnDaxnoTIzA71KNjGIIJexXjMppGeJaQmMoJf4Olkd2z0ZmxxDxbSXCM8Z06NimbGKJ+PW7gmftf1kZMoXEcR4WYdWMrNa57b+6ZP5fzJQiw9UD8Dka3ffALXBKHOfV7CxZNL"
+ ],
+ "x-ms-correlation-request-id": [
+ "445d2fdf-2cd7-4c6a-bcb1-3767eeb23fe4"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14567"
+ ],
+ "x-ms-request-id": [
+ "445d2fdf-2cd7-4c6a-bcb1-3767eeb23fe4"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:445d2fdf-2cd7-4c6a-bcb1-3767eeb23fe4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzI0YTJhMzY1LTI5MmYtNDAyMi1iNjUxLTVmYTMwMzI0ZDQ2ZD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "117f6f8d-3f10-4b67-9068-a908698fbc13"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgHZ3i8D49nkFGxAG7CziScgqmMEX6zo9QhvDqtXVOb5ha4khcBxbdbVos1TgTXj9I4G4eOJ+TWGZ0RFc1zjYE97YQiOzWOvM35tbmN9DXi94QuQAfq6IlpmdpIUcFlmnr9gLtxVJ+qe9RTHsxn1o"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c08389b-78e3-49ff-bb6c-707cf47a5eec"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14566"
+ ],
+ "x-ms-request-id": [
+ "0c08389b-78e3-49ff-bb6c-707cf47a5eec"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074440Z:0c08389b-78e3-49ff-bb6c-707cf47a5eec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzI0ZGZiZjg5LTc5ZTktNDZjNC1iOTljLTA4ZmU1YTgxNDQyMT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38392299-c05c-483c-8a9e-ca4c09ec11ee"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoMiLXouNNwLJuELvRZgoaB+2IiaouzASUF+SXhhzrCyp0xMyAAhCxujqPuyouQEx8Q7KSm0jo6iTVhf++QmB5acC67QWxap+znrpJZHExbeuwkZdWLGdw1eK6xx+k9GNCxN9CR6OtHfLwvz72zxU"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e061f72-d13b-4021-b727-35d69ed91602"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14565"
+ ],
+ "x-ms-request-id": [
+ "4e061f72-d13b-4021-b727-35d69ed91602"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:4e061f72-d13b-4021-b727-35d69ed91602"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzI2MTVjY2MwLTAzY2EtNGE0YS05OWMwLTczMTI1Yzc2ZTQ4ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6c67b59c-0e64-457d-994a-29a72e8ad2fe"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLxQPp/lTSy4CQI7Q6tdylPDpftzrxwomm/BHhFwMm1CdIX6DhR0QR0rMLMfvfJsn6C3e12lLzI630/QTz+XwQxcd5eoiRdJgtuEi05ktQ1TtyzQFPpqyNA/jC58oETtzDoA2B5W02eA4SzMUzeyI"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab0b4992-701e-4f5c-a2eb-303168ee464b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14564"
+ ],
+ "x-ms-request-id": [
+ "ab0b4992-701e-4f5c-a2eb-303168ee464b"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:ab0b4992-701e-4f5c-a2eb-303168ee464b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzI3NTczYWEyLTdmMjYtNDllOC04OTVkLWU4ZmI5OGI2M2UzND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "145f314d-4921-4606-b8e7-2161ac101c29"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFMixVhM0spPqp9k4czBDoITwzxDIKFXep2Jqp7ABzWb+wokQXxQky64UcXX83rRXV21OUB7kUggIKTf8346yQpKGypbQ/5hoJ7sO1DY3NT2yg/vTkjCXjVku9UT8kCF8ZxJlWRgeZJwkaM8mWPIG"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cc08265-0881-4142-8a00-f626a595565d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14563"
+ ],
+ "x-ms-request-id": [
+ "2cc08265-0881-4142-8a00-f626a595565d"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:2cc08265-0881-4142-8a00-f626a595565d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzJmNzYwNmI4LTYxMjgtNDYxZC04YWU2LWJlOTE5ZDRmZmRjYT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6ebcc0e-de7f-4e65-abb8-28701f0b9391"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveIRpMGQ2hlrMox6dd9epaWFfUgcUcRCtkMA3GOwmQSVph/1GONWtn3jJifjH1WfXwXiB8XD23xn0klsy5D8q0NFEP790sax4Up1GPG3cm2L8yrrvHycj7nZ3J1K2ESNSurnssu4zT/OSrAB6u/5G"
+ ],
+ "x-ms-correlation-request-id": [
+ "53dcb7fe-d55d-4fbd-90df-cdd8fd955984"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14562"
+ ],
+ "x-ms-request-id": [
+ "53dcb7fe-d55d-4fbd-90df-cdd8fd955984"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:53dcb7fe-d55d-4fbd-90df-cdd8fd955984"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzMyZGZjYjc4LWM3MjktNDhjNy1hZGEwLWE1N2VlY2Y5YzQ0Yj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ef14f0e0-016f-4331-ac84-508699dd73f7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlVOfQN1G5B3E7jGrFliT1gW1NmwSbjMPlpqN1919ivZ3EV4mTvGeXQuuJaZPHJ1goDjJCD5m1AnzXNwi6tc3DWL+Sk18mb2rxVvWjaTt5x5S+iJ2as69JhDe/SEj1DcmWKfjMF0DLIrwPtuYrkFZ"
+ ],
+ "x-ms-correlation-request-id": [
+ "741d5bbb-92f5-43e1-92c7-f02ec3447073"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14561"
+ ],
+ "x-ms-request-id": [
+ "741d5bbb-92f5-43e1-92c7-f02ec3447073"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:741d5bbb-92f5-43e1-92c7-f02ec3447073"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzM0OGJiNTE4LTgwMzItNDIxZC04NDBjLTIyNjU5YWJlODcyMT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9fcb56d6-1b9a-4936-8398-cc52301c2efd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviI2Rfvc+sHv9SJUfo0R+mZm/ZfayFCHzFPj8RYOXsViJ3+zy2Q8A6qFdYOkmPM7zG/lkcabjv/3/YRkGTYZB1fMPnCsaw4WgAU48j6Va425aXnYMdR30sWqQmjz8cRihlqM5rR4dEbmC+egoK6ro"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ef6e98e-14cf-45d2-9703-e3ac6b7a62b2"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14560"
+ ],
+ "x-ms-request-id": [
+ "3ef6e98e-14cf-45d2-9703-e3ac6b7a62b2"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:3ef6e98e-14cf-45d2-9703-e3ac6b7a62b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzM0ZjFhMTI5LWJlNTctNDNkOC04MmYwLTIxZjlkY2RjNjM4NT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f1a7f9e-5fd8-4a6e-9e1e-80563585c595"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHraTrt305uJ/3foqin5kOxPpgpjQ3as1g4uIbaCZkTQc5orxijB34jRXEnHCS4G5GnY4LLiChhhi/RGl9z9/XzGL/fLJ1+Ds9Pgru9amwfCBnymre4hzFoOWmTfspA7AUffHhhWINMYTsBqTBtgv"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bfd8d09-1e70-4517-8f48-0c5642852a66"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14559"
+ ],
+ "x-ms-request-id": [
+ "0bfd8d09-1e70-4517-8f48-0c5642852a66"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:0bfd8d09-1e70-4517-8f48-0c5642852a66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzM3NGVkMjFiLWE5ZWQtNDVmNi04NjBlLTVkZWRjMmM0MmZiMD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af08a254-abcf-4e9e-bf68-1b3ecfb190ea"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzW4H4GNxM7Mu6c4zemQHwO9RkmApBzdpS3Ui+M4v+UEzO4bu/lXK5pZ8T7ULVL9pb0W6XcNc8EtKBLLlKTLQuFSBTzpcEvdvcEupV7iil/raoVAXauzKhsy2DEYBTEVl+1+yaJ6/qQFI4jfoXvVv"
+ ],
+ "x-ms-correlation-request-id": [
+ "61f3789d-895f-4922-80d9-4625f8df48de"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14558"
+ ],
+ "x-ms-request-id": [
+ "61f3789d-895f-4922-80d9-4625f8df48de"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:61f3789d-895f-4922-80d9-4625f8df48de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzM5ZDljMTUzLTgwM2UtNGIyNy1hNDFjLWJhY2RmOWExZmQ0Zj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d9a0fc5-d4dc-4275-9c09-197b814d7a44"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6r+z241k1wjOMXjI6JRI4RyappNT0m9O4kGvR8vbANPZ+LGhf548AN6K/6++PC0g/KnAjROT0j2Oo9y0UCP0mvqFq8oyIJpH+wQPclGMs2xEgG9A4M5kLXEXdFKi39nMK65kogueCJZMaXMpyCBR"
+ ],
+ "x-ms-correlation-request-id": [
+ "e57d8705-cd85-4baf-84ad-9cb9d715ea57"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14557"
+ ],
+ "x-ms-request-id": [
+ "e57d8705-cd85-4baf-84ad-9cb9d715ea57"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:e57d8705-cd85-4baf-84ad-9cb9d715ea57"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzNiMjdiYjA4LThiMmMtNDhhOC05ZjQ3LTdkNTQ2MzFhMjczZj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7cf6454f-b50f-45c7-ad99-42f3e1b1c4aa"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFNRq54JcnlNhgptCJYR+MJfHAQAAsmIHLcexwPS5qnT2IhdHQS0ey00TeAQS4c8RQySoMAh4f3Qo5A41VTxuTfbL+PDV9AwXlD65PLI3qimrXNLBkX2LBgIU3HJCEIywtbQ9C8bwgr2N7KncgS/6"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bdc89c3-14b7-4836-9347-e30a0597324b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14556"
+ ],
+ "x-ms-request-id": [
+ "5bdc89c3-14b7-4836-9347-e30a0597324b"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074441Z:5bdc89c3-14b7-4836-9347-e30a0597324b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzNjMGQ4Zjc0LTcxYWMtNDU0NC04MzhlLTkwY2Y4ODFiZDhjZj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "71f4d6d6-e8c6-4283-b2c5-5f953e3bce01"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqJjDyvcICn+yYlcIh5HohvvXK+S8fUrOTe0sHXIHuwhd/m6EActg2RE4tgqHTA4jkc2JR32qQ7Jb9F+idb6eBBC8WtF2qY2piWwqLzZXpjQeijF7pJm043ru95l8Ed5sZXLDdreFR+vsTH0knTAO"
+ ],
+ "x-ms-correlation-request-id": [
+ "464a88df-41f0-4bcd-b41e-ec443e2cd302"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14555"
+ ],
+ "x-ms-request-id": [
+ "464a88df-41f0-4bcd-b41e-ec443e2cd302"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:464a88df-41f0-4bcd-b41e-ec443e2cd302"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzNjOTA4YTViLWM0ZjItNDFkZC04OTViLTAxNDI0NmM4NWQxYj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8315d33f-5db7-4f7d-afc7-ca16783cde7e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvIrlAIwM1PazLP9fde9/Cc7DtZ4+pgKhTwXRTLDb9zNerDQr+nNWgOuTTtTsF/37DtAwlTobPPTmUqKVpMXzCoyUsICPRVmLCvQrA4Er6sDBXza6UpugtdzwW4+CL0OEiwZyooyjMlxAs5nyr2sv"
+ ],
+ "x-ms-correlation-request-id": [
+ "87732d66-4ea7-40b6-9eaf-9c166890a783"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14554"
+ ],
+ "x-ms-request-id": [
+ "87732d66-4ea7-40b6-9eaf-9c166890a783"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:87732d66-4ea7-40b6-9eaf-9c166890a783"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzNmNmZkYTQzLTQ5MzMtNDhmYS05MThkLWI4NzQ4ZjYxZWE5Yz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0cb0bd3b-fc81-4da7-b204-ff1cbde18bae"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3LHH+bV0qAOioTHoArzcnUlkwBdcsZ2AT6/6StUz5LLG6+cQY80LWskuqz9qhNvrYfp8b5WNbEetkboW3e0jfT0AcIJMt+yCWE7AdEpwX5WcrrN+hdUq/EKV2ihmYIp/rruNRP4QgY/WUnJY2bxL"
+ ],
+ "x-ms-correlation-request-id": [
+ "42476f58-626a-453d-87ed-f108312d27c5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14553"
+ ],
+ "x-ms-request-id": [
+ "42476f58-626a-453d-87ed-f108312d27c5"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:42476f58-626a-453d-87ed-f108312d27c5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzNmZDI4MjE4LTc3MjAtNDQwYS1hYTE0LTQwMGUxNGJiMDMxNj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e59deff3-3cac-4633-a511-6b18a33efc3a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoth+Gf/Lmc/9lrdc4Cnl7MWYn5XQSYYUUu6zgZYflSNFKfknEUnZOXsNsGSyCZz/GQtV+7yV9TGm0up61WlhkwvjCk7eFVnHNlQiGoCoDnfJelFvjC8SQixvpYB2ySG6Xd70m6HjoZ3ntJ0vrUdW"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4ccfa57-8ac1-41cc-8459-ddaa39d9cb10"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14552"
+ ],
+ "x-ms-request-id": [
+ "c4ccfa57-8ac1-41cc-8459-ddaa39d9cb10"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:c4ccfa57-8ac1-41cc-8459-ddaa39d9cb10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQwZmIzZjExLWYwZmEtNDJhNi05MDkyLTVlOWI0ZDZjNmQ3NT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "389f6a15-64a8-4044-8b40-87125966944c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzafSq7JfYT8WbDSjrODkOKk0lGBUrgSuJInb3QQ61z6983KtZ8ilCBOrCtsgdU8OgONIF3T17ZBgfItIrDMnkIvFz7pORDKL4sEywxVq5nKwgxqXzM6Tj/dFfko13BSq43kxKiib93ET63CDl6G9"
+ ],
+ "x-ms-correlation-request-id": [
+ "31d4aaf0-a8e0-4879-9e5f-e4cc6d9fe940"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14551"
+ ],
+ "x-ms-request-id": [
+ "31d4aaf0-a8e0-4879-9e5f-e4cc6d9fe940"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:31d4aaf0-a8e0-4879-9e5f-e4cc6d9fe940"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQxZWEwOTVlLTNlYWMtNDU5OC1iZTVhLTA0MmVkZjM5MWUyYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed65e833-8e2f-4cff-b8e2-ac5053c6a666"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9xFmf9LiCS3OqgV9cgIpZl0rb4zZEj1yszdsWZ7PZt2KCx3zRp1BwMkds1HEuzoVpZI4vuUvGE9Asf50uONs6T4OOiB8MTxZg9kLHtBtyD4EZ9dwqBlZNr9IfhFd/7xVo048KaVavRiEZU0LW+s4"
+ ],
+ "x-ms-correlation-request-id": [
+ "88633369-0726-4c77-ba2f-fd68975c5d96"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14550"
+ ],
+ "x-ms-request-id": [
+ "88633369-0726-4c77-ba2f-fd68975c5d96"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:88633369-0726-4c77-ba2f-fd68975c5d96"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQ2MjA1Y2Y5LTZjNTEtNDMyOS1iMzlmLTE4YWFiMDRmMmFjOD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b2e6a65-f1f3-4e30-b07e-c71aacea90eb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVThBLAk6Cgf5JHlFiw3ZhKLnNakfQrp2UGP/qz2avS3Pt1tVI3QuoQoG6oIjZl9cvnoAGFv1uq02O7ujV5WjRfMxU4LS1A/tHigGkgEgiCamA5hlFFoVAieFsDj4taPSORP8MZJ9crIRnEtVnSHp"
+ ],
+ "x-ms-correlation-request-id": [
+ "eed45bd0-4e1f-4d25-b780-676191f7e2a0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14549"
+ ],
+ "x-ms-request-id": [
+ "eed45bd0-4e1f-4d25-b780-676191f7e2a0"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:eed45bd0-4e1f-4d25-b780-676191f7e2a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQ2NDdkZWM0LTM2MDktNDZlNy04NDlkLTJlY2ZlYmZlYWQxYT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "02723f40-b22a-45bf-aa3a-6963f2dc789d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6dZfJSLksCI6oQd8U9Z50zjQFFlJoUUB299u940aN7vcCGgGmS9uw0jYXtr5zI3dTTCufQWevqWjrbbIsuSypos4Ug+MaBz2/sKqq5yv7mIKYw9uDf7VrZLmpcmfiO2ebyZVJwJSpFgRFprbPwQr"
+ ],
+ "x-ms-correlation-request-id": [
+ "701e16c5-f6a0-46d5-85d5-406b9d8e5754"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14548"
+ ],
+ "x-ms-request-id": [
+ "701e16c5-f6a0-46d5-85d5-406b9d8e5754"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:701e16c5-f6a0-46d5-85d5-406b9d8e5754"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQ3YjVlNTRkLWNmY2UtNGMyZC04MTZjLWM1YjJmMmMwNDY5YT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29ce1a41-1aef-47ea-849b-a4731c119e0d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcHa6NU/NgPN56oubp7Mx7maYl3WbOuGQneA0TRmEx5XKx0CFJ+AmFXaom5yE3hFwFc+bryd2AsUexXgyfMLn4rnGfX3Ii3eHrx3E+r6LelHDN5+GN+R490uf7dfJLaW058lGTGknFRo5ibt2MXpg"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5fc0700-048e-490d-829c-fb5cf84646f0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14547"
+ ],
+ "x-ms-request-id": [
+ "f5fc0700-048e-490d-829c-fb5cf84646f0"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:f5fc0700-048e-490d-829c-fb5cf84646f0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQ3YmE2NDI0LTgyMTItNGFjNi1iN2I2LWQwMWEzODg2MWNlZD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29560b8f-94fc-4a1d-8519-65e3f4d1116f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLq+X7A2iXdzTPll3oUzwVVdcfOcoEcPo7otiXPBCm7FHRSykzhbQk0dZQ70277jMJrDvyaz1YzKsrmbfI2HuWlwFOtcl6AosQyA2VVXDJKovyamXZAcGbfkeCTjkmewnVA0e6H+4TKya6i+F/4lS"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe77c384-ec9f-4395-a73c-6f2690841363"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14546"
+ ],
+ "x-ms-request-id": [
+ "fe77c384-ec9f-4395-a73c-6f2690841363"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074442Z:fe77c384-ec9f-4395-a73c-6f2690841363"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQ4YzliY2Y3LThiN2MtNGIyMy05ZjZlLTY0ZjI0MjhhOTc2Yj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "edc3f849-d284-44b9-b0a2-cd53afdf2f26"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3V5MULM0b9e2bI4/eNoaQcHK3mik9hxFCPe+0uk5LHSIFCzNv9Absax8iZ/zxPwvzLn6NM+PLYVLOMzAPQ6wuMeS68oYAr52EDJmnS/Veap8rFWFPNeGZgKCxQfDjURojup6vS9z6H/foXEZS/nd"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f42772e-3302-4101-82e3-7a2a36e2ca3a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14545"
+ ],
+ "x-ms-request-id": [
+ "4f42772e-3302-4101-82e3-7a2a36e2ca3a"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:4f42772e-3302-4101-82e3-7a2a36e2ca3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQ5M2Y4MzkzLTgwN2EtNDFhNy1hNTk5LTQ4MmQ3MGYzOGFkYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e7490bc2-0515-4c2f-80c0-246f1ea97bf7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFlZ4L7kX7H+ksDKdx/7nXpZtLRXact80ugFQ/Ty2JZnz36hrdyAcpne/rWXGA8r+qsFRcT2SDLLlic0rhFm3IFDaSrZEe2kmEToii1C+8GM/Hn1tMazmHHJxIfDXgCdA3l5cGKdc/QXfwmU7SgDj"
+ ],
+ "x-ms-correlation-request-id": [
+ "6af133ef-d97e-4f9d-b687-7947ff88ae3f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14544"
+ ],
+ "x-ms-request-id": [
+ "6af133ef-d97e-4f9d-b687-7947ff88ae3f"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:6af133ef-d97e-4f9d-b687-7947ff88ae3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzQ5YzQ2ZjQyLWUyZDctNDU0YS1hMjBhLTU1ZmQzYWEwZDQ1Yz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8d5ee8a-9b1f-4411-ae5b-f8e5f0bc7f5e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaH1Ni78HklzualdZLdBEUIwbwCWjhpNolIbN9rt0/9CQPQMTlEn1LWHvY450no8IqHXT0NzD/I0PRe0h+ikQSwpmYUnWjTo4TtzxzcTjXC71ogJ40TVW8Yh3+WSjU93GLcs8VzQ7j09X+ESscRfA"
+ ],
+ "x-ms-correlation-request-id": [
+ "99fbf2c6-63f1-4358-bc50-9e7f7488ea6b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14543"
+ ],
+ "x-ms-request-id": [
+ "99fbf2c6-63f1-4358-bc50-9e7f7488ea6b"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:99fbf2c6-63f1-4358-bc50-9e7f7488ea6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzRhNWUwZjg1LTRmMGEtNGQzZi05ZTBlLWQ1OWFmYzdlOTZhMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5c005e1d-56a2-433c-ab97-4621148ae117"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBwVDX95m5Hv1khrgVH6vfFo6ZXdvaFY/tRX+XPbQWlNYVnFzjrWA0SS3rBQ72ZTmZODxHMU8uI2fxYiuyQNjMQx8PtXp6515w1oTa/97QGXnG+NdZcPCFytp97jEXjUp+4TKi4OPcPQKux4E7smB"
+ ],
+ "x-ms-correlation-request-id": [
+ "77bb1041-eb85-4835-b159-96c97f22e8b2"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14542"
+ ],
+ "x-ms-request-id": [
+ "77bb1041-eb85-4835-b159-96c97f22e8b2"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:77bb1041-eb85-4835-b159-96c97f22e8b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzRiNmIyNTFiLTA1NjEtNDAzNS04OGIwLWVkOWJlNDRiOGU1NT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eea2412d-0595-4af1-87f8-e46a7953f0df"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+wHQkyNuN8/HWDS/dpXfCIZxp8NKjLq76DPoGboIq+eZ4yWmF6Sf8BtTIkyVdYOaMsGSGtv9hn1FYLgeJfNuzbDYDWgP+wpj+NzZ+44tn4Ig/ckiabTi3NB5t0lpCnr7O089JZh5rSI8UpbXovG9"
+ ],
+ "x-ms-correlation-request-id": [
+ "c839dac8-bcaa-482c-b8fd-e54b098d5445"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14541"
+ ],
+ "x-ms-request-id": [
+ "c839dac8-bcaa-482c-b8fd-e54b098d5445"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:c839dac8-bcaa-482c-b8fd-e54b098d5445"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzRiODdiNmJjLWYwOTMtNDE2ZC04NDZjLWFhN2ZiMjlkYTQ4Mj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a81b98ec-54bc-492a-9026-651274ed0d87"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG0rt0X9XTQhugZgSHmfSe/S9JZUnwnaHrhNEgPhNG/V0omnHzzz4kisFs463tapmd8f5ACHwK0l53dPG8N9EZclymF87btRvzcxiEduomwQcv2gLGPqRzcGL8wM6y6iYrxWVe+srSyVtCsgAZ1AI"
+ ],
+ "x-ms-correlation-request-id": [
+ "599f4949-0239-46f2-87a1-d1a221009662"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14540"
+ ],
+ "x-ms-request-id": [
+ "599f4949-0239-46f2-87a1-d1a221009662"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:599f4949-0239-46f2-87a1-d1a221009662"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzRiOTI1NzM4LTVhMzgtNGU1YS1hNzgyLTcwYTgyY2NkZGYzOT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c018f7a6-5d51-4c24-8906-b596d3c8aa6b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGHeBJJ5GMUH008U436ZvlDF9DacEYmN2wiTcLlWQpFMgU4pO/QNfnrOA1WLo2HuT87l3crZ8M5NvAHK/C3sxzh1jsuJERmspf2h7sP7DfCDx1yTCYzS6v/0nHCl1QGMliK3oVqcULrkVzBxHwxLb"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac19cde6-287e-4164-9f89-ecd689eb5799"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14539"
+ ],
+ "x-ms-request-id": [
+ "ac19cde6-287e-4164-9f89-ecd689eb5799"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:ac19cde6-287e-4164-9f89-ecd689eb5799"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzRiOWMxMTg5LTYzYjctNDc2ZC1iMzZkLWIwNDY0MTkzZjYyMT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6ae5c98-fda1-4608-90bd-64e9fb2bf5b9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4StX1VNi3+RavyPnFtBvi5L0unn2LEX+9zvCvVEHeYsyf5Nm16UkQhZMcBfzT4QnlSZt+xK4bj2SnvbD+6/DnxoHhgc59v1WdFXjOc4NQL+UtqJjPqHqDNvOLlq4nrZbbN4iJX2/zN7eV1iR1E22"
+ ],
+ "x-ms-correlation-request-id": [
+ "7dd5d4be-ff86-411d-8c4b-10750329af3f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14538"
+ ],
+ "x-ms-request-id": [
+ "7dd5d4be-ff86-411d-8c4b-10750329af3f"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:7dd5d4be-ff86-411d-8c4b-10750329af3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzUwNjNmMWVjLTJkZDctNGY0YS1hZThhLTFmZGViZGFkMTE2Zj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e421fd3b-1355-4ed3-91a2-3a07e8baf2ff"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwCDsnqdSMDrQI8DysntuOHxqa+Nl2B/EYEvEKgerFErZcuU2xVNIZnqaA+E+UFToC6vcWLq/bgg41ylS5Qkm65lyQWIV8qYqv0JPWMgPkLBOAYaTsSrfOUsRPAWHj+GL7NK4EmZUroqWajPoToFJ"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2dc9af0-9221-40a6-a21c-e0c549a87d21"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14537"
+ ],
+ "x-ms-request-id": [
+ "c2dc9af0-9221-40a6-a21c-e0c549a87d21"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074443Z:c2dc9af0-9221-40a6-a21c-e0c549a87d21"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzUwODVkNzJiLWI5MDktNGIzMi1iODc5LTNlZmJkNDE4MDVjZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "471a1c59-ea0f-4779-b966-c853863784cd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbSVetmvMvW6cIY3hSPuwo14nyDSjWjpiWfTR/HgMkt7xTUUVxV6Tm42P11Bpe3LgCW2leyFUb91psXqstXwt933XVUoZef3aYklVT7BNaJFvltDNmKd+6o2tczSBAtvCDCYyO0bW6h4aYvTF9A1I"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d6867c4-d488-4fee-8090-a17684e6c606"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14536"
+ ],
+ "x-ms-request-id": [
+ "5d6867c4-d488-4fee-8090-a17684e6c606"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:5d6867c4-d488-4fee-8090-a17684e6c606"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzUyOTY1MDkzLWNiMzEtNDExMy1iZTQzLTZmYTQ1NjAwZGY4ZD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e962f684-4b12-4d0c-b12e-b8c7309759d5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvopGborvrtznbXLBgn3Qds+Znv/QWuGfqcnWDIwDv4gwzOvXa6EiQzSLO4rCtKMZfUu0MZmKffgjdqDtTTk0XqpeVBUaV+pxYtBUK85poCtcX2DL2SSXpkq3pkbL9dVDgJzlaPNvDTDhGFZhZTo6N"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff964bd8-87e9-4471-911f-d7c0870e5578"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14535"
+ ],
+ "x-ms-request-id": [
+ "ff964bd8-87e9-4471-911f-d7c0870e5578"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:ff964bd8-87e9-4471-911f-d7c0870e5578"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzU4MTYyYzg0LThmMTQtNDY2Ny1hMTM5LWQ3NTMxYmE1NzU5Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63a3bbed-c689-4e26-aa7e-e16f28df8959"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcLdivfZZSPxvAY3oXXZrf9dDBLI/OZgTy7zwGbIAHXkRhdzH0Eom+IKPvYiVT3bCLcK05XepHhTLJDvpZXCeYSVuxlVj/EwzsnfsZC6ZulTJ7EdO23ZLXV3OQSRbbiAPjV9iklgMyluLq1cQea87"
+ ],
+ "x-ms-correlation-request-id": [
+ "26acd58a-549d-4de4-891b-b45d93009034"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14534"
+ ],
+ "x-ms-request-id": [
+ "26acd58a-549d-4de4-891b-b45d93009034"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:26acd58a-549d-4de4-891b-b45d93009034"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzVkMzUxNTZiLTA5YzAtNGU1OS04Yjc4LTIwNGFhNTBiYTJmOT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a510abf-a0ba-4915-99d1-c38e299cbeb5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRHCiuqF9+VLxSCo9E7lOJ5NHqeuw2PUvx7mnhMRR2bEjPf3oXlbGwccqQUUlobaNS+kLlMnpbYoK1f79ca3FsvOhElf1yqy1yQ/Vi3FYPDMf/MljrGi5P0r4ZQASGSqfFl/P9+6bIxpbp4FquWBW"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a964de4-e909-4c83-9c9c-8e38083d2ab6"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14533"
+ ],
+ "x-ms-request-id": [
+ "9a964de4-e909-4c83-9c9c-8e38083d2ab6"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:9a964de4-e909-4c83-9c9c-8e38083d2ab6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzY0NzFlYzE2LTMxYTUtNDFhOS1iMGJlLTRkNzIyMmQ1NTkwYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ad79462-9ddb-4023-806b-ec238659cba9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUK4Pl9D0+yVYio8KMOMDH9YLJ87IEQT3q2WVCk6MFwBA7HXdFY5mSURPi6eR3/4nNZkmgAkZ4SARRlLAidPleihUCjPOu04ORPzHsvlDhcO7NU3LTSNQl84t91cAbNySBVid2q2gg0r5BhzysblH"
+ ],
+ "x-ms-correlation-request-id": [
+ "047dc16a-f1d1-4745-a844-969fd907d277"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14532"
+ ],
+ "x-ms-request-id": [
+ "047dc16a-f1d1-4745-a844-969fd907d277"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:047dc16a-f1d1-4745-a844-969fd907d277"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzY1MGZlOWU1LTk2YjUtNDM3OS1iYTMzLTNlZjNlNjI3ZDc2Mj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87e9f69d-4d7d-41c6-bd2c-853ec081ef8e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFubx2qKGrwiv5qTjV8rbsJzlQu0E4eeNQkndzJtwJkmOapAFH/1Re0kT6atqMfe6+xZ6iby0aU8BwVpumP5+D183Avb/WPiMzPQW8tWd0FW8jHgmiibDX6SW5ixA2PGBkfs0qGo5ROS7la5KvYTL"
+ ],
+ "x-ms-correlation-request-id": [
+ "e929697c-7106-4b41-9530-40fed2735fbf"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14531"
+ ],
+ "x-ms-request-id": [
+ "e929697c-7106-4b41-9530-40fed2735fbf"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:e929697c-7106-4b41-9530-40fed2735fbf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzY1YzRkODUyLTc3ZmYtNGZmNy04YTgyLWRhODMxYTE2MDhiYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6065704e-db9f-429b-8144-2a4f450e1159"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviwMwTWML7ozEqTRu8QaSHIo9JOpPktvgdKQSmH1vRbsrP7F8b69ebGWRhPXh6G1xWkVgmmhosH6y+i/z4/6qjizAqLlzJUzgWgR6cm7uJRPeGBt/UXAh7bGGfTaBlBscMrRUY2lozywHS7AcMN7k"
+ ],
+ "x-ms-correlation-request-id": [
+ "68daf07d-5a85-407f-aa05-dfe7b3e1b3e4"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14530"
+ ],
+ "x-ms-request-id": [
+ "68daf07d-5a85-407f-aa05-dfe7b3e1b3e4"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:68daf07d-5a85-407f-aa05-dfe7b3e1b3e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzY2Mzg4MjkyLTJjNTItNDU1ZC04NTA1LTVmN2RlODc2NWRlOD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "171e3824-b4d7-4fb6-aaa0-ac9458548909"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1MgNdlJ26Yiz6mo1fkpjgl5pPGrv4raaWtkVpj78MKXhYjAO7WhCCoNjU6aZ/8Qupm3aPFgB+aLUIy0AvxTfUWBT6cSlr5JYQhmGg58YdaF8YhAL+8GMFMKZBut5W7IaIbGzgPrObLltKxMFX1K+"
+ ],
+ "x-ms-correlation-request-id": [
+ "984efdcc-e1c4-41a0-9044-0fa60cd54552"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14529"
+ ],
+ "x-ms-request-id": [
+ "984efdcc-e1c4-41a0-9044-0fa60cd54552"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:984efdcc-e1c4-41a0-9044-0fa60cd54552"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzY2ZDlkMzllLWMyMWQtNGFjOC1iYmY2LTZlOGJlZmVmNmVlND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2c529f3f-3cb7-49cc-8303-dcd529c3927b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRve8tF8BnRrljApfSPuS9tE0ixHazEGvlMJ0wlDMLm/gOc+u5bEMF3myhSIVztPuTAM1aUTkTqG5mGNzSP5SPp1mdDKrgVwCU50ac9pS90Vo51V2H0eY4wkohsVcE0Ktsnrlkib/3zK21Gz5VucFV8"
+ ],
+ "x-ms-correlation-request-id": [
+ "f81275bd-1ef5-484f-a5c1-263dc51000f3"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14528"
+ ],
+ "x-ms-request-id": [
+ "f81275bd-1ef5-484f-a5c1-263dc51000f3"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:f81275bd-1ef5-484f-a5c1-263dc51000f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzY4YTkwNzk3LTk2NzAtNGJmOS05MDUzLWU2ZWIzOTM4ZmRlMz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52e5f57a-18a6-44b2-b79b-6553c98dcacb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOpUs/XHECYzlKRcGoG4u2yUV3KL2hoxD4CIjbdeX+BPlsrbki5WdQ6TmHiG7BBGpXZctw2FGczBaFpKMDWDAPAEZ2+IJokSVRYDQS1fuK58yrK1C0bhIviOXB5ho5gRQn7dfr+iA635yNv2Keabk"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf1823f3-ee41-4cdf-84a4-e482fce96678"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14527"
+ ],
+ "x-ms-request-id": [
+ "bf1823f3-ee41-4cdf-84a4-e482fce96678"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074444Z:bf1823f3-ee41-4cdf-84a4-e482fce96678"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzZkMzQ1MTI2LTkzMzctNDBiNS04ZmI4LWViMTM4NDI1NjkyND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "22fab3f6-1ed5-4ef3-a4d1-d2a886332b05"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcIp+VVksojenCJOhSneK/TO1BERLVbZTgRwAm+1/F9CcGdGkm/zbb9Zf2/T8QKRHcgTGgxi9oLrLgN0gdVkuy1ToDWtFygTTTORDyedeaZefFFTUR4GbU2JWi0eJ4EEdVfLZr/3MpTaEIkoOKsYP"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b843f40-3235-4ce3-82a0-84be3e90b5e2"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14526"
+ ],
+ "x-ms-request-id": [
+ "1b843f40-3235-4ce3-82a0-84be3e90b5e2"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:1b843f40-3235-4ce3-82a0-84be3e90b5e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzczNjYxNWJmLTA5ZmYtNDNiZC05MmYyLTBkNTI2NzA1ZWMxZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "184d84d5-e79a-4a49-aa90-4f54b2642c0e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQudWQnjLUnk9oBtoo2M+eLm7yuwHj824TzDniQc3H8nZrK8PZXMQapirVOlWzTh8Bp2VyqjwbRsHLF06gwcTs9kqzh2KrNedT0SmGvZjHKwHjEnYjy+qeWcBrc7iwR+9q+yXAxC8YCCsFdaNOYrZ"
+ ],
+ "x-ms-correlation-request-id": [
+ "5590d782-6fec-4b77-b18c-5df4d4cdd556"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14525"
+ ],
+ "x-ms-request-id": [
+ "5590d782-6fec-4b77-b18c-5df4d4cdd556"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:5590d782-6fec-4b77-b18c-5df4d4cdd556"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzc0Mzg3ZDYxLThkNmQtNDkwZi05ODRhLTk3NGM2ZGNjYjhhMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "21ea3512-341e-48bc-87d5-b9a2921349ce"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwylgChJh4tYVLjc8MC3Y95Fe/8xtZxKAQEzWF8Cpbl8swbVoaG0l1heBWHlXT/6x1sf0knCsOrXeoAy3W8DNG12PjQLAK7st8G1Hyurgrlt2GWfA7USGSFLDGc2v3jjQwWqU3FybnuLEj+ZCLmPe"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb831f50-b696-4da9-9c66-dfff00f6ef26"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14524"
+ ],
+ "x-ms-request-id": [
+ "cb831f50-b696-4da9-9c66-dfff00f6ef26"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:cb831f50-b696-4da9-9c66-dfff00f6ef26"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzc0YjZhZjAxLTQzYjQtNDVkZC04MzQ4LWI2YzIwY2IyMjcxNz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5095cc90-048a-494c-a78e-ae44d9fb4b21"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvW97nJDSwSvOiG8O3w9oI/PxcxgWJ20P8WlRcOWk2hii425kZudxwIxBXqzC9GuUwAQIrjGowHtks2LVsFGH4Ebnx3BNySEElnj60w20jtewcMUpF9eGUlIn5jD5n3hHFrwNY3edFwHvm9D56UvR+"
+ ],
+ "x-ms-correlation-request-id": [
+ "8335bddf-9c60-422f-a78f-5d9be3341bac"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14523"
+ ],
+ "x-ms-request-id": [
+ "8335bddf-9c60-422f-a78f-5d9be3341bac"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:8335bddf-9c60-422f-a78f-5d9be3341bac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzc2MWQ3MzQ1LTRjMjUtNGU4Zi1iNTM1LWU0OGRiYWUzNTQwNT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8401302d-85ba-4215-bc7a-f8cbe50b0bf4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXceOMdjYR3JBEWSyz6TU4EFEtr2jGjpkvt6HVn57+5RiYqGS7VcErGn8pFVSWZiKsWcvzxMfuo7rzlZA4cbB8uJxuVv5wR6jm9syYVF8QfAPG3VZplrEiv/L/DAYva9UW52V0amUYpUHJ4wzux/1"
+ ],
+ "x-ms-correlation-request-id": [
+ "c37ca74e-d571-481e-b665-0fb10a17a5f4"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14522"
+ ],
+ "x-ms-request-id": [
+ "c37ca74e-d571-481e-b665-0fb10a17a5f4"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:c37ca74e-d571-481e-b665-0fb10a17a5f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzc2ODIxNGRhLTY3YzAtNDVlMC1iOWU3LWVjOWUwODQ1ZDVlZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ef4cbd86-fdf1-4ee2-9e5d-f0fc7880bff8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+FhJX1wHwF71MhJNpIwWRDJNL3XIwd+YUWtfDo0SgyJd7TiCHCFvQ88OBRwiTDmYLwcNE8WdITfkuFBbhMFdCxrf0Q/WWccRgvsccMej2RUwcH68d74Ptn490/pda0VHg8/QVbQ6XKvrYTVn4HhG"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f869dac-11d0-400e-909c-e6f234fc5ed3"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14521"
+ ],
+ "x-ms-request-id": [
+ "7f869dac-11d0-400e-909c-e6f234fc5ed3"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:7f869dac-11d0-400e-909c-e6f234fc5ed3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzc4OTU4OGQ1LWFmMGItNGZmOC04ZjA0LWM3OTUwN2MxYWVhZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bc382a0-3e15-428f-bc78-a7ad16fdcb17"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx233lesMiWjUsh9mV+LEfi7OklRgW/B/kIFxdPcd4rhA1wSrURamCSWN7IJz5G4kh79rQpxILNxt6Hh6TwEdyUiskhQympOUNqNlw9Efw+qJ02fX38jIy8iyqEPFOyJv9i3l6Hx6RggkAWGlVIeU"
+ ],
+ "x-ms-correlation-request-id": [
+ "73f5f146-07fa-4128-81a1-1d300647ccde"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14520"
+ ],
+ "x-ms-request-id": [
+ "73f5f146-07fa-4128-81a1-1d300647ccde"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:73f5f146-07fa-4128-81a1-1d300647ccde"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzdlMzljM2IxLTFkMzYtNDJlNS04N2U5LTEwMzQyZDcyZjRhMT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "572062be-e2dc-48c1-a917-4a1d5541e925"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtqDWlmB8r0V1Uy5kSIBq0ZgKMbUt/bLt8WizhKR57R690m51gKL07zM0ArPDWrXOvK1XlW2DAIJqSJeX9d5cEGe4wSFahMQkVp2eXSTpW03M8jul1bBOJWr9EGzJNDx+bJRZ5CDaLv2qzIRdom6F"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1276ed8-b4fa-4a7b-b2dd-6829ce547572"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14519"
+ ],
+ "x-ms-request-id": [
+ "a1276ed8-b4fa-4a7b-b2dd-6829ce547572"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:a1276ed8-b4fa-4a7b-b2dd-6829ce547572"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzgwMTU0ZTQ0LWFlZTQtNDhiNy05ZWVhLWFmZTU5ZDg0ZmVmOD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4bcd76e6-4128-4992-b345-4cb7e4c3a765"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTZ2wnk/tnpMWQ886frIdtQNqfMPH5FoX6pQlXnCbg7JFHrJpJ2g65J4ga4L+4FtevZWY3QKSboB/Aor2uOhpbd6l/z/LM/C1rZihKvUYoKhIn3GVumPRfRBUtQRP+vCKjcbahUtdDnKsab9ITVSC"
+ ],
+ "x-ms-correlation-request-id": [
+ "0740b21f-05eb-41b2-a3ec-4d525b0ee6b0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14518"
+ ],
+ "x-ms-request-id": [
+ "0740b21f-05eb-41b2-a3ec-4d525b0ee6b0"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074445Z:0740b21f-05eb-41b2-a3ec-4d525b0ee6b0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzgwYzJjODY2LTI5ZDYtNDdjOC04YmViLThhOTU5NWQ5MjZmYj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4193d13d-3fd1-4201-8169-057a2e750b3f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBVx5XDVpogT8MaFS9AmLpjkWZMJzBiJFy6qAJ1aTkttevsIhxhPJfFrghi7t58+j0jvhjyRWPGYiMAbyEcWibJpChcF/Yg7m5L0wBc4TxpdbhCcj9zrNAQAHXsEyexYcTDmCq8j32972UEiWBiG4"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b5c5a9c-3281-45d8-9d2d-76a2542f3cc7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14517"
+ ],
+ "x-ms-request-id": [
+ "9b5c5a9c-3281-45d8-9d2d-76a2542f3cc7"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:9b5c5a9c-3281-45d8-9d2d-76a2542f3cc7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzgyYjU0ZWY4LTcxNGMtNDA0Ni1hYmNjLTU4ZTdiZmY1MjM3Yj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ee1f3dd8-b043-426c-840b-67c292f1a330"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvt9Z6jQRQoDRJrODtgrSpzZrxV7wW895FGvxCOYbwNiu3qMI2nshoQ5lHaybkGaT4dpFegIV2FQJSk4cX7JRc8HEzAmSIAdwrY2VdPaa96WNnvkyOIwiJMi4Hf+/tWeHQgpmLW4Jv56P/JswXTKts"
+ ],
+ "x-ms-correlation-request-id": [
+ "a393cfe2-146d-45e4-9ba1-21c1fd072ad0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14516"
+ ],
+ "x-ms-request-id": [
+ "a393cfe2-146d-45e4-9ba1-21c1fd072ad0"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:a393cfe2-146d-45e4-9ba1-21c1fd072ad0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzgzYTNkNzg0LTNkY2MtNDNhYS04ZGZjLWE0NjkzYjY3OTk5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6744b52d-0897-4f74-b1e0-585ae6e58b26"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLBgQO0A3FsbVhvNg4uR1ar+kvy74BZcdDizlOEpARnUrDboE4OANs3QrcsYjPLtKVR0p3seJ+Rvo61VfUh/ZqIwoAfnxcmHkVHCv8s/eX3x45FTVx0/l8S6crb/yQovKhw5V8Nu1DicXjwDu0uxp"
+ ],
+ "x-ms-correlation-request-id": [
+ "036861c3-91e2-476d-ace1-70a2b8329547"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14515"
+ ],
+ "x-ms-request-id": [
+ "036861c3-91e2-476d-ace1-70a2b8329547"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:036861c3-91e2-476d-ace1-70a2b8329547"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzg2YzYzMjJmLTI4ZDItNGZmYS1hYjVmLTNiNGVmMjMyY2RkMz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "792025fe-1746-4deb-9425-11c17008566f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWHvyG9qNn7FhHGPD+JGb/G4KFKqgapHUMTw+J9wVKB1ggxH44I3VQSwMKQLxRpTXuUGTbl+sZSf4aaOr8FbKK+OgLSQ5EXK5b0tPsppXsEd0YwXAmpWIusUmaUh0U9ZzawdkFdrR+wb1gt+++Pwc"
+ ],
+ "x-ms-correlation-request-id": [
+ "3415c334-1948-44a3-b6b1-03f13835ddd6"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14514"
+ ],
+ "x-ms-request-id": [
+ "3415c334-1948-44a3-b6b1-03f13835ddd6"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:3415c334-1948-44a3-b6b1-03f13835ddd6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzg4MjFiY2QxLTE1MGQtNDVjMS05OGVmLTc4YzZkMzlhZmQ1OT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8c626fb-e138-494b-843d-37e9eb8e961a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwaPoJMCu1OwnAAzRmAMJinS54fUsyqtyf7inUWEI6UTOBc/rXYbr80Y99K5i2RJFHRJNDsHyzQuqEtw0SW06MDzAsSqzXG98HaoR9fZdjd2LDYof+PvCY6XQ9kwAjFJZQpJ9CuuNistLKy1OqfFD"
+ ],
+ "x-ms-correlation-request-id": [
+ "846331be-2dad-4c7a-947f-a6439788725a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14513"
+ ],
+ "x-ms-request-id": [
+ "846331be-2dad-4c7a-947f-a6439788725a"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:846331be-2dad-4c7a-947f-a6439788725a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzhhZjQzMzU4LWEyMGEtNGMwYy05MzA5LTMxNTEwODg4OTlmNj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f1049fd7-7df6-4506-886c-7476dced7c5e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ+gIpBODH8C05qZlzTscrP2uhSg0IXnCCI0x9WnxAf6ZnKetbJd8MtTzIzRMoZnKmakj4gxvT0LteYncBZ86tFWvuvYl0yWifQqbXGscbt3d8i9YV9B5ZW+3keL/dJlzIGZhVqo4UwrUJEvz23iR"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8e07c78-de0b-495d-ab1d-b2cc61bb7a9c"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14512"
+ ],
+ "x-ms-request-id": [
+ "c8e07c78-de0b-495d-ab1d-b2cc61bb7a9c"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:c8e07c78-de0b-495d-ab1d-b2cc61bb7a9c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzhkZWU4MTU3LTRhZmMtNDBiOC04NDYyLTEzYTVmMGIxODFmMz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f353aada-52d0-4e4d-aea9-b4617d6f9d90"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2ql6TgQbhXhIw1uXdw0VqTQFQqPC9uRFnGBovPJFqYxGXJWJJ7jGOj4dO6VIylrMmUtXUtT7fbxxeSBGoWeGZVCHpmtWYkltEEaVPS2sucSyADCxNTzq4UMdQzo/LzGyWcpO03K+7k/NLGbFrbpU"
+ ],
+ "x-ms-correlation-request-id": [
+ "62fac6c2-0587-40a8-9e68-704323cecc4b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14511"
+ ],
+ "x-ms-request-id": [
+ "62fac6c2-0587-40a8-9e68-704323cecc4b"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:62fac6c2-0587-40a8-9e68-704323cecc4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzhlNmI1MTlmLTRjMGMtNGZlNy1hY2RkLTE0MTZlNDE1YTRhOD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d7109c8-4fa7-4224-bbaa-7634c0fbf67e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvirK3K3qrVBGGpfren+M5BXDdUt0Y6dyxtbwCip8s2PSFvQo5vQ3OJ9anPejDbTbBoQAPbfBrGxxC/S1Ts6f1H8gg43/3wVrM8k1CuYSX3/hVfEb3n3QN45FJdlIyFUok/GZEw3HEFvXBjpmcrb2E"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f7bf230-3ac3-4d95-97c4-2a34b457f311"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14510"
+ ],
+ "x-ms-request-id": [
+ "2f7bf230-3ac3-4d95-97c4-2a34b457f311"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:2f7bf230-3ac3-4d95-97c4-2a34b457f311"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzhlZjBjYjBlLWQxOTYtNDc0NS05NGVlLTNmYzNkOTRmZDBiMD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3fd144ba-e328-4e2f-bb51-7503781962c2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0j6UKqF2e4BkJ44eP5KpnlHRYil2vVEE8uW30GhUVzq/UoWhMGgoTJ27KrRoozC9SWLlA/Lo5iJglQNwmQHWM1EIOTcymHUFUtvYtnzL10KcUEjBaGxCYUrivCqEU9qmtm+VrWnAIhA/n0+VzYkM"
+ ],
+ "x-ms-correlation-request-id": [
+ "333d5883-c0f9-4fc0-b700-f5620ec3e6b1"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14509"
+ ],
+ "x-ms-request-id": [
+ "333d5883-c0f9-4fc0-b700-f5620ec3e6b1"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074446Z:333d5883-c0f9-4fc0-b700-f5620ec3e6b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzhmMjRlODVmLTk2OWQtNGRhOS04MjZmLTIzMjI4MmZhZWVhZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "580cfe98-f810-4d88-ab81-fff862f0fd22"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSTRWeoSIdLtQZIuS3iV1k9ZWUqq2obImWdlxiILi5Mu1mLUgS8tfeWp0udOlcEp3XMfhZgt/wppc5a4Ix9QrZrma+kRdTy+OLEdEJfgl1PqUwftUaVJWVoVbRBAqzmfS+G1+KMbEmyOhhUK85ans"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7ccb11a-cc20-400d-aa33-550c04b94f2b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14508"
+ ],
+ "x-ms-request-id": [
+ "d7ccb11a-cc20-400d-aa33-550c04b94f2b"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:d7ccb11a-cc20-400d-aa33-550c04b94f2b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzkyZTMxZDA4LWRjYjEtNDBlYy05OWFjLWRkYTJhYmRlMmU3Mj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc176602-4650-4e27-8476-325d6cd9efa2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU0+JOclNeVna6VrHQ2llBmtaISuzd6J01dfXhy5Wv7X9idWGB5kW2HTvu0ej1oBsmykH0Xliv7/6qNpC0jsBfLtObVhqwC6ervAb+EKxBQC1SxYl3Qp4E5MvaAk/ccRqAqR/oI8mLPbeZGzUQc3C"
+ ],
+ "x-ms-correlation-request-id": [
+ "54f401ff-82ec-4c46-8cdf-1a9b0d4a2771"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14507"
+ ],
+ "x-ms-request-id": [
+ "54f401ff-82ec-4c46-8cdf-1a9b0d4a2771"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:54f401ff-82ec-4c46-8cdf-1a9b0d4a2771"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzk3ZmI4YjJhLWEwNTEtNDI0NS1hZDZjLTI4YmE4MmY4N2ZlYj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aba7bac4-cc28-4e9f-a19d-c20e2fac7808"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPNFQwSnvhIGNhWhQoK5vvQmJ8eP4TbEQJEVDDY9M9X6oeepOmXbpRqUB7wkLwqxrl8jrCBWC2gPmk2gTctDeH2jZN6H93sgPaXBgdGr05yS7tNw9O9Am3anjFPzcgfG0PuEtibtwmFsgnSHfPVWK"
+ ],
+ "x-ms-correlation-request-id": [
+ "728e7894-973c-4461-9485-34f247350e8a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14506"
+ ],
+ "x-ms-request-id": [
+ "728e7894-973c-4461-9485-34f247350e8a"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:728e7894-973c-4461-9485-34f247350e8a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzk5NTdjNzZlLTc4MzQtNDdkMy1iNjQ5LTgwN2I2YWEwNGUwOT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "128a83bb-f81a-4fa8-bd8a-e49741ff93b0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuo/jwSvBMPZdjR4FbOXVJqDUuwLCmBbtvZzRj/37cZDzRRF4T5EwyKHRuFNTjREiU2bJETftRbUhxEW449sDFpkiFc/cjRv3Q/2LI4lM2rTA2iCX9xYMB4FYuskHHsFuUenXPtLQX+B+lN5CJNqA"
+ ],
+ "x-ms-correlation-request-id": [
+ "861d0fc7-c0bc-407a-99ec-282a50f0411b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14505"
+ ],
+ "x-ms-request-id": [
+ "861d0fc7-c0bc-407a-99ec-282a50f0411b"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:861d0fc7-c0bc-407a-99ec-282a50f0411b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhXzlhNzE1MWJmLTUzMjQtNDFiYy1iNDYwLTFjMDcxZWE3Mjg5Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad7a7acc-3142-4e9d-8b47-eedf26d7ca40"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvB+G9cYrrxAF9rSDyKHy9joSqhF1lzyaZI/GBi+H1apBZ83YvePT/zJ05kGMPzg9xGz3kTHkRXSortJ5ya0Kh5ytuKv1ZFTxKPQF5jmb088AuyMkNA+wIsUiT/QyyWKw4ZldMRZgjbrxKSXC63qbM"
+ ],
+ "x-ms-correlation-request-id": [
+ "5002fbfa-3b6d-4036-ad37-c586ecf383c6"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14504"
+ ],
+ "x-ms-request-id": [
+ "5002fbfa-3b6d-4036-ad37-c586ecf383c6"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:5002fbfa-3b6d-4036-ad37-c586ecf383c6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2EyNDU0MjRhLTRmZjMtNGUzMC04ZmEyLWY0ZDgxNjhhYzczZD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e1205692-fe6c-4395-8118-c5af6e31acf7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/0YGE/kDQd21HRmvWxpl5bOttxvPsCHhGHsvC8iMoAljRELktYoO0RNfcZ/aQDzA9NnB0dN73/su7EyPNlabORsPisK9IV5meFxx8ITT3Fh7BieS08UJiwIZL5NQZY6GK2C38h/rCjey5vasYpuY"
+ ],
+ "x-ms-correlation-request-id": [
+ "10e4fad2-e542-42a6-bf2a-63b25014da6e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14503"
+ ],
+ "x-ms-request-id": [
+ "10e4fad2-e542-42a6-bf2a-63b25014da6e"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:10e4fad2-e542-42a6-bf2a-63b25014da6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2E2M2NjNDAwLTQ0N2YtNGEyYi04Mjc5LWQxMDdlODQ3YTA4MD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e559801c-987a-479d-864a-5237432679dd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5WCOG/0mX0jUsFaaFGi6hFAZlGEG5UZmeUE1WM5VJiOI5WAjX8EhwKy6pZOvrRXq0ipCLXMJ8ohAoZyPZdx+AbiatqmPEQXYEWA73KoSdWtJW5ulWJiwyYDvHtZ3ZaXgZaaft/GZBB/eml2riCcg"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7a36bf0-12fb-4d8a-a2c9-4e6e0b2efbdc"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14502"
+ ],
+ "x-ms-request-id": [
+ "f7a36bf0-12fb-4d8a-a2c9-4e6e0b2efbdc"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:f7a36bf0-12fb-4d8a-a2c9-4e6e0b2efbdc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2E2YzhiNTFkLTg5MTktNDY3Yy05ZGIwLTUwMWE3YTUyMmU1ND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2449fc08-9157-4205-8be9-827c63153c5d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXfaw6TFubG08ESDURl/kBvf8PhXQByjPNTqDrhVotbuETp2ZI624BeGQxbqMdKu39GEMsOPfFqCU1lkX2C3fjq9p2b9V6d3YIjiTXHXb30fiGcS6ayhdJwhyzh0vCYHPLdU9IqTfSCJAK7dv7orE"
+ ],
+ "x-ms-correlation-request-id": [
+ "69171692-f36f-464d-91ca-f40cdb21235e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14501"
+ ],
+ "x-ms-request-id": [
+ "69171692-f36f-464d-91ca-f40cdb21235e"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:69171692-f36f-464d-91ca-f40cdb21235e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2E5Njc1NGRmLTE0N2YtNGRmZi1hYzBlLTdlNmZmY2VjYzM4NT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23e487e6-e72b-4d61-bf97-c1d1ce9c22b6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsGKRaFptjsYAE0Y8sQPhRRmupNz1+PZVIHa4HcTBJ5Q3vFlBVciaVYbsE67nuhISmWR/pqcDr77mtPOnCQhzYCYGR3UFhdGGVK6WNwtMBqHpzQEjl15kaa4nSyilfG8pGTCbWfFivgdBQAxMe2AK"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef41f073-610b-431e-ba20-fe19ad5513fc"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14500"
+ ],
+ "x-ms-request-id": [
+ "ef41f073-610b-431e-ba20-fe19ad5513fc"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:ef41f073-610b-431e-ba20-fe19ad5513fc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2FhMzZmZGEwLTY2ZjQtNDc2OC05MjhmLTY1OThjNWEwMDViMT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "22d67beb-6c16-410c-9c13-313d5cbf77db"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/V8YlxMXxqWwHyWyOwsPp2IojgOZ/UiQlOnfJQlyyBUyWldgemf1L90PaGTpJcAWKDqT5SlZK5Zk+W9XjeD1GE2EYC+roZUQtajvFyTdx4k4eEHITzyRCOvrbclzr737SM/ntsj6jVrsYauMOAQJ"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e26e685-8ec4-483b-b799-46c6f0d07362"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14499"
+ ],
+ "x-ms-request-id": [
+ "4e26e685-8ec4-483b-b799-46c6f0d07362"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074447Z:4e26e685-8ec4-483b-b799-46c6f0d07362"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2I1YjMzY2I3LTU5YTgtNDU4My05ZTQwLTgyMDlmN2FmODMwYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "28540a9d-6d07-4900-9f4b-34f19586efc2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+U9hM44/UOtNT/UAJOF4M+XDC47JW9IED95np/0QLuQxLKO6oNe+lfYDOB5zJeHCQs9eFfRttrCRsKUhtQFVgiVmobhdss8ESqg3Rw19mmmoHOM01JXqnROYVZMUPd1jsplewb6dfWyzAqkidr2X"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebc7aa30-ec56-409e-91e9-664f8d707fea"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14498"
+ ],
+ "x-ms-request-id": [
+ "ebc7aa30-ec56-409e-91e9-664f8d707fea"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:ebc7aa30-ec56-409e-91e9-664f8d707fea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2I5YTc0MjkzLWYxYWMtNGJiYi1iNmQzLWIyMDAzNDA3MzgxMD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f08416d1-ede4-4a8d-8396-95fe8dbef77b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdQEOyoqxaTyeKai7hsS8wQqyA980wKt5iDPTudwP4c1RVe2UtHADbAfmho3FuMbtRBSiKRoI99p7koBSP+uWesdYDNVykHJ/146DmwjToq/Gxo2aMEYpLTBXP/5tN3Vu03XZiXUuRICi6tPMEoZz"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9115352-98d2-460d-9ad2-dbd25b0a482d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14497"
+ ],
+ "x-ms-request-id": [
+ "f9115352-98d2-460d-9ad2-dbd25b0a482d"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:f9115352-98d2-460d-9ad2-dbd25b0a482d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2JjNWVlYzljLTg3OWEtNGVkYi04MGVjLTRkNzFjMTMwMjVmND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eacf83a0-e15a-4e84-aa02-af12f70e1afd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYyxIo9nR9mNGNUSbMYnzg7Yw6kU95s1hB55mPdqWp4NHZMqNOFaOQTPMfz8q5Wx7JSaOeuBgx5a+upkIf2S2P+o/3dAHLL5vPB9CmWSEfSViFoZOyZ7fFm6XaNRxPz1gz8VNxjr8ttPChI26oo5r"
+ ],
+ "x-ms-correlation-request-id": [
+ "958a2999-c3fd-4973-8fd2-8d3f4baa3da4"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14496"
+ ],
+ "x-ms-request-id": [
+ "958a2999-c3fd-4973-8fd2-8d3f4baa3da4"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:958a2999-c3fd-4973-8fd2-8d3f4baa3da4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2MzNDU5ZmRhLWIyZTItNDI4ZC1hNjRiLTUwN2VhN2IyMWUzNz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f70374b7-d1a0-4f38-b2cd-a6e418d70843"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvh8EFcabS3tqD+WyUtRriv8XF02UwuvPah9pu5yLxgOV3GzzzN7BkFKTa1x9oKWBPPHabm8+5kzZghcIGJrCv2J26pJ87KiZzj+1OQIsKK6OJFGeEfuftYjqwL++t5GIFIsW5m3OC2GmnALutDiON"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b8974d9-167f-4ffe-b8e9-7e15780cf8db"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14495"
+ ],
+ "x-ms-request-id": [
+ "8b8974d9-167f-4ffe-b8e9-7e15780cf8db"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:8b8974d9-167f-4ffe-b8e9-7e15780cf8db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2M1M2FiNzNlLTIxMmQtNDY5Ny1hMDNlLTVhMmQ0MzYzM2I4MD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "11ee886f-1270-4031-a5ca-757abd0051eb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvM8FVNzoKK1DsXCS7qOnNQtvWLe6km5m6vrHtEklAkDrGh4+1YHfnMKyEu/qMYmO5SWxzo83ura8c5y8j87lGWkS7+lPFIMXYs+r0soOKVKLkhevDZzaA6XWytK71nzub4MToOwe0/g/t7SvDRGSY"
+ ],
+ "x-ms-correlation-request-id": [
+ "299b1344-1185-4700-8ec0-76acae303300"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14494"
+ ],
+ "x-ms-request-id": [
+ "299b1344-1185-4700-8ec0-76acae303300"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:299b1344-1185-4700-8ec0-76acae303300"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2M1NWI5ODE4LTk0OGEtNDBjMC1iOTE0LTZlZTQ3N2MzZmFiYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20554abf-6ed5-499f-9c85-7c6b7901180a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvA/9DgQ6NidjKMnYRcMrHNpiiL7uM29dfO6TtulB52Dq7S0V/TTZbj8nqmTxI5CvI7s65rtGImms83NqQxvpE5Ss7cboGkMWhUPvrPNzzDKBE3+ISfWTw9eO2ztxX74fpMNyvh2gcMBQLczA13H97"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb355bb7-53f8-45ba-b1e1-343feee5d3ad"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14493"
+ ],
+ "x-ms-request-id": [
+ "cb355bb7-53f8-45ba-b1e1-343feee5d3ad"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:cb355bb7-53f8-45ba-b1e1-343feee5d3ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2M1ZDdjZTk1LWYwNTYtNGY0YS1iNzFkLTEyOWUxYjMxNjFlOD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5cb38568-965c-4218-bedf-49453e5af0a0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYbInjpwDUD1ExOPrmY7KL+i/ZWCt+yk+XaIQ+snl3hjHxmb5bBCAOnud0YHyCrw+DsEzkJiWRV8wwG44ULMEic+Rlh1Q/T6XlSW21dJ0jCGsUc0qAit0N6N/fSQrYK4rd7ao9t8wzVVklKPsMok0"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd04b214-b7ad-48cb-9d2d-13d8f5615364"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14492"
+ ],
+ "x-ms-request-id": [
+ "dd04b214-b7ad-48cb-9d2d-13d8f5615364"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:dd04b214-b7ad-48cb-9d2d-13d8f5615364"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2NjZDU2NGZiLThjNTktNDc1ZS1iZjdmLTU5OWJmOWE5MmI4YT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01920051-451c-4cde-9358-ec6434660b90"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOHUOttGI65UOS+MiS/NmUeuNCoHhIlOJ94N0lfk3kHsniXBWGIKZbEPoFkXVvPN0VFagXDpG/g+KItNEL2lpQqvZd6XCPdo56Mq0XJl/uwLiSCYIt/OSIA2/yjmz5T2Cb2nMrhMOX812KASdyQI+"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd5cf413-45fa-4e9c-bf06-d53422bc9397"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14491"
+ ],
+ "x-ms-request-id": [
+ "cd5cf413-45fa-4e9c-bf06-d53422bc9397"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:cd5cf413-45fa-4e9c-bf06-d53422bc9397"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2NlZGEzYTUyLTU2NjYtNDY3Zi04MTk5LTFjMzE1MGFhNThhMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "25e719ed-829b-4736-8191-4d3ca35193d6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvREc29cDNHk3WYDcnLIY0hQdmEZVEvBaMsFEfNTpdw3L8wY4CbmrHJmbnu1KYJrxXlehe0AFA/NH1H4gp0uUjbko50CMWuiL5+RxRLT45GRWpWBseuuXFtO4w6Cq05OjBhEh2Vx0nxMdvjiOPMGuy"
+ ],
+ "x-ms-correlation-request-id": [
+ "39ba7f97-0185-47b3-af10-9084a24cd260"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14490"
+ ],
+ "x-ms-request-id": [
+ "39ba7f97-0185-47b3-af10-9084a24cd260"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:39ba7f97-0185-47b3-af10-9084a24cd260"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2QxZTBiMDEwLWRkZGQtNDc3Zi04YTZiLTZlNTgyZGUzNGRiOT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60eceadc-092c-47b2-9617-6f2e33be3060"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5By0PTHErU4kHw2fB1N1tkyFpOjp0PCp1fwk0gFm4LsgL1c01PsbbwNY0adqIEFsYbFPO8Ero7vntUTdPxkxI75hyW/xw09D1ZLYvjAU/xfkDGS9lQvcQ92KTmnkPkS4unmhbrvBQBphTTDQseje"
+ ],
+ "x-ms-correlation-request-id": [
+ "df73df41-754f-40f5-8768-51c6a1165522"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14489"
+ ],
+ "x-ms-request-id": [
+ "df73df41-754f-40f5-8768-51c6a1165522"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074448Z:df73df41-754f-40f5-8768-51c6a1165522"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2QzMDBkNzAxLTJhMzYtNDIxYi1iZDUwLWIwZmE2MmRlZGFmYT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f4932de-4496-4248-9500-9db09f9cc5e9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTVdKlHTe4OHhXTnWOwUtDfLtxbM15WV0kqRvCCN1rx1LEfMJsGAAvBSwQCSxqIH0HDVUf9WHnFLnKv5xTANC9moI7dlvXKVpwLWS58K5pXlN6L3dK1LEQaxJIJxuREBzCr2uVDHwWAxYXAK11W7T"
+ ],
+ "x-ms-correlation-request-id": [
+ "6088c63d-4380-4ce0-ac11-863a40798fc4"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14488"
+ ],
+ "x-ms-request-id": [
+ "6088c63d-4380-4ce0-ac11-863a40798fc4"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:6088c63d-4380-4ce0-ac11-863a40798fc4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2Q2ZGRhMDU2LTk1ZjctNDY4Yy1iZjYwLTA2ZDk4NDI4Y2MwZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f3018a60-e220-4b1a-b7a7-3f3df92d53be"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdkzyNuPOp+bo680/WHTNyDm9VGmzPUje5eSdcBNRrPgWV/RCtwo1Oz07qY/WXH/EG19Xk1BNCgSLF/TwgyxhiWGLT/6+5wjQ17M/glbLFj6jEyno0SEkYvd9WXPgx2ADSdih+GzWXmZ9dO/sYfvH"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f40abc3-0bf6-47a4-83f6-24bbb384146e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14487"
+ ],
+ "x-ms-request-id": [
+ "1f40abc3-0bf6-47a4-83f6-24bbb384146e"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:1f40abc3-0bf6-47a4-83f6-24bbb384146e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2Q5NzVmZmI1LWM1ZDgtNDEzOC1iNzk4LTYwNmZhODUyNDk0Yz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5429f8ce-b74a-42ab-ac51-820afde697cf"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvWRgiUwdGIIgsSElFe/SyJAkYRKr9Qx0Ku08LisrzU8DdVnyI6Z5b9BJPqw5yqBBklWWEkKAAfXkFMGzBD4ENwXBjsVBjl9Hvlk1ML3TbL0/1+kxMFuxHKBisiGOi8XCZuhmYLxaOyhBXEaeCTts"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4740666-944f-4efd-aeae-00d5b7634d65"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14486"
+ ],
+ "x-ms-request-id": [
+ "d4740666-944f-4efd-aeae-00d5b7634d65"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:d4740666-944f-4efd-aeae-00d5b7634d65"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2RhOTA2YzM2LWE2ZmItNDVkZC1hMzAxLTM0Yjc1ZjE0N2UwZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d568eec-1740-47b7-81b8-a7d4e11eb9d7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXsAX04RMYGsDYNpWuknam/G+RKCBKZ/zkKkSubCfyO5SrwGK+Oyrxq7spo7n3BCMVAumhq17Wl5E+m3nZS/2KCsRFppnPeQ5lUCJgMDXUFXEEORLKaGukOBsfr1O3weIs7KyhkfEKg7a8yZuZYxo"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0c0148d-c742-43d1-a234-731eb9931fff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14485"
+ ],
+ "x-ms-request-id": [
+ "b0c0148d-c742-43d1-a234-731eb9931fff"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:b0c0148d-c742-43d1-a234-731eb9931fff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2RiY2MzNTgwLTFlMTYtNGZlZi1iMzk3LTc4ZTMyYzA5ZWI2NT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07af13e5-2a80-4b5f-9a08-cd600c7af2ff"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvucke2uoPEptyUi0izTrgb1Vr11484vvgIwfQZDS/c7f60qoIpDhk28P12OUfqFU1+R4eMbOeENABznfXqU7Or19g6gacGTSGjZMDtCi7dA/5Q8zHkzT81uHEh2Ckq7F0TqewnL96PzjfgGZ9Jvgt"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3302142-5f3b-4831-b1ff-06f5d7aa7683"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14484"
+ ],
+ "x-ms-request-id": [
+ "a3302142-5f3b-4831-b1ff-06f5d7aa7683"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:a3302142-5f3b-4831-b1ff-06f5d7aa7683"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2RjODNkMmRmLTY4MTktNDY1ZS1hOGQ5LWExZDdhMjUyYjZjYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "33380414-58a8-417c-bdbb-81689174c48f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDX3FVUGcnccTsxOJDzG9+fPqV2IHyuOyMw/NxkM//o8PjWKBpkvZzASfkdnJ0JeQMP6R1FPe0eMZ6s8PHKMzwHyVAVHGXWC5JUyBCpwiGNMBz1S0ajK73JxaxedJ/IW8jg5jUaMIR8OfN2+CrMH1"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4821d7d-b37a-4fd7-b28d-9d3c8d320fd7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14483"
+ ],
+ "x-ms-request-id": [
+ "d4821d7d-b37a-4fd7-b28d-9d3c8d320fd7"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:d4821d7d-b37a-4fd7-b28d-9d3c8d320fd7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2UwNDRlNWQ2LWQ4MjYtNDg2ZC04ZDdhLTc4OTRhYTJjYzZjNz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "617d6004-5393-4b30-b2e5-053541c3a473"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Yc4BPHjtnG5VHAaYWjvFd2pHOW4dEvZ7JL0C9wp4RF4zqOIs/SqOryk4RHcaXBVbU5wLbWLMNs6JbH7JjoXJddBGfEXaxtFgYB3m8S8QfVwoEQoPSF6ftmyF8c9Un3dAKnF2QAbMlYxTS6B36SK"
+ ],
+ "x-ms-correlation-request-id": [
+ "86f69699-6766-4d02-b85a-31ade7759ddd"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14482"
+ ],
+ "x-ms-request-id": [
+ "86f69699-6766-4d02-b85a-31ade7759ddd"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:86f69699-6766-4d02-b85a-31ade7759ddd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2UyYWE0MDBjLTZhNzYtNDdmZS1iNGZmLTBmYzc1ZmIxZmU3ND9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0220e462-dba0-4c6d-99d0-42e301250edd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyxCGucE0db9flhvfMxXT+qdKUXnxzvvcq92xSrqly48/T5raavQxAt1SoCYcTPoK/YCel6n08kyZBPeTjbTrHsBYddIf1vAWW7TiRXujqOMaPhfVv6V9erl9u2/ofRNxw3GlPEWLBJxCnxQnxqV/"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcddae48-ebad-48af-8b77-0fd6dc1cad86"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14481"
+ ],
+ "x-ms-request-id": [
+ "bcddae48-ebad-48af-8b77-0fd6dc1cad86"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:bcddae48-ebad-48af-8b77-0fd6dc1cad86"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2UyZGJmODkzLWNlMjItNDYwNi1hM2JlLTNjYzE2YzQxZDc3Yz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "36e3a784-6792-46f8-9300-43c63dc07970"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnjNGA2mwxH2RoPh2wI+ikYMhGiZwmoYnEPKsq9b6ovjAIE6Ld5Db/nQcaTkBXoZ+GHWgXATlljIjJicVfOzu1eLzoJ4tC+isxCVGfmJviQxzRt5TfJhotQe5fRmPh/lX76/FC2IkNCmHxfw50zNM"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b16bdbf-48e2-4714-8d68-8d2d3920a3fb"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14480"
+ ],
+ "x-ms-request-id": [
+ "6b16bdbf-48e2-4714-8d68-8d2d3920a3fb"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074449Z:6b16bdbf-48e2-4714-8d68-8d2d3920a3fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2U1ZTJiNjA1LWJhMWItNDIzZi1iY2JkLWQ2YzljYzUwNGY0MT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5aa16782-039a-4151-86b4-52bd6d2e6b19"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfn5tRxQNSBMQlDp7eQzIhmduRmKi70w+Tr798sdkKM1mxiDSvAO3XglLgyY0y/Gr78w6WgyP8AqoKLJ/b0ggR0a6hoKLmuyas797/lzNjT4085va6QbcfJGtytM89JsnZQKPrebDKhQ96bu3zWMP"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf20855b-ef0f-4f57-9072-5454b1c568c0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14479"
+ ],
+ "x-ms-request-id": [
+ "bf20855b-ef0f-4f57-9072-5454b1c568c0"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074450Z:bf20855b-ef0f-4f57-9072-5454b1c568c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2ViNjg5MDkzLWE3ODMtNGU4OC1hNTQ0LWM5NDllN2E2YThhMj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "59d8028f-a6dd-456f-b5cc-430595e3bba3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgbeWeK2XQ1VahXpVWl4gRwGuLeAs3MNLz+TYKnRd/yihLCo9JDNtLxlNAaz0K+X1H4ZG5YOQEZZ1ocPbzxICCPuxLoPdKlAu1Fe+cI7syRuUMaOKgubc+4biJaKhhNOXL/r1+vhMoQYzRcsjfvz9"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5211e3b-3ab6-4cff-a2a2-5db32db56f06"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14478"
+ ],
+ "x-ms-request-id": [
+ "d5211e3b-3ab6-4cff-a2a2-5db32db56f06"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074450Z:d5211e3b-3ab6-4cff-a2a2-5db32db56f06"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2VlZTAwOWUyLWM5NTEtNGFlZi1hZjNlLWE2NTg2MWE3NDE5OT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69351791-a4d4-45ae-b2bf-ceddd8ce056e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhp7pEoO+XBSu4y8Vz7aBW+5ch5hvhn25uBJRlsI81e59pMoZWiR/5CZOJlJ0eZcN9O3E3wmyk1dtTZ3cGZDpMbiCzbTyevQlJbC57/HmhoathIt7Ec4RKcCakQsLzU+i6EoTzodJV7me3StXph0d"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ab1f068-cd77-4231-a26a-707c5fdf8cd8"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14477"
+ ],
+ "x-ms-request-id": [
+ "6ab1f068-cd77-4231-a26a-707c5fdf8cd8"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074450Z:6ab1f068-cd77-4231-a26a-707c5fdf8cd8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2VmMGVlYWE2LTFlODgtNDY0Ni1hYmRjLWNkZGExMjBiYmQ1Zj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "92ee8941-1ebd-400d-a0d3-d7ba0e621dc5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBKcuHhxVcdSpDRknQwgOQsjBdNVjF5MS1iDjqB/0UUqxqQwI0ZeQE5mNW2F4dywpIrgnjyT5pmBhlrTZ9/s9z/le09youOS1hy+WS6ijWjy+tv+y4gjQheXC+2i2oG1AelwBb0f8HAI46XfedCpf"
+ ],
+ "x-ms-correlation-request-id": [
+ "942a549d-4e4f-4058-9ce0-7657794de983"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14476"
+ ],
+ "x-ms-request-id": [
+ "942a549d-4e4f-4058-9ce0-7657794de983"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074450Z:942a549d-4e4f-4058-9ce0-7657794de983"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2VmOWExODg1LTU4OGUtNGNjZi1hY2Y3LTI4OTE5MGNkYzE4ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70eac33f-e054-45c3-8be3-15c1c95a7b24"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvw9MGtgPTSN0WKv1vGWsUx3SXMzvrQWcxKBzx+KNZxf2mJTbxs+eyEXbta8uVHcgW+/xBX0xs60kd/V3H3sRvhKU4jYKkr3kgJ+rGKDCMALG1pNfp8/BxKU018iE1dKRtm87FmzY5z0KFC0KA1JK"
+ ],
+ "x-ms-correlation-request-id": [
+ "654703ee-f0bd-45a6-b636-521db6153d7f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14475"
+ ],
+ "x-ms-request-id": [
+ "654703ee-f0bd-45a6-b636-521db6153d7f"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074450Z:654703ee-f0bd-45a6-b636-521db6153d7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Content-Length": [
- "328"
+ "491"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2YxYTFmYWQ5LWIzZDctNGRiYy04NmY1LTFjOWE5NjBjYzllYz9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "80ee962c-35a4-4352-9bd8-616ae2816949"
],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:22 GMT"
+ "Wed, 01 Aug 2018 07:44:49 GMT"
],
"Pragma": [
"no-cache"
@@ -41,62 +7711,126 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRve704myrjfuDfLq+dMg8mpzvTILNHtP+swg+I4AkE0K0wOX75/ncq+s4m/CECs17lxiySlMXHhiNFRu+cc2uxSJBqeSYYgSPXPiTTKlFf9Dt8IBuRugbkPOxCMn2N4SED7sTEzbiCrpdIw6hifIn+"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8IZeoezYF5VndFigK0kepUogS4wx/3bbpiX67sz8hvOhGStXaJ94rcRRG0MheWT08pNZPZBJ4JF8/9o0xJEaL9T1EOcPUrGSlcCJJCj4b4YU1b3AxRsNBCQTzRRl7q//AOSmBqI0WldfMB2iB8nz"
],
"x-ms-correlation-request-id": [
- "ab92b7d4-9688-4fbc-8518-8180a15c5356"
+ "212d5b6b-c537-41e9-b99f-df1ad8ba0ffc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14821"
+ "14474"
],
"x-ms-request-id": [
- "ab92b7d4-9688-4fbc-8518-8180a15c5356"
+ "212d5b6b-c537-41e9-b99f-df1ad8ba0ffc"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195423Z:ab92b7d4-9688-4fbc-8518-8180a15c5356"
+ "LOCAL:20180801T074450Z:212d5b6b-c537-41e9-b99f-df1ad8ba0ffc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default%20Quota?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0RlZmF1bHQlMjBRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2Y3OGI0ZTdlLWFlMWQtNGM0OS1hYjc3LWJkZDE4MDdiOTNmYj9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6b8892a-52bd-4f89-851c-1cf41bb5549b"
+ "2de3adc6-d3af-448e-a8bb-feb15e8496ed"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
+ "FxVersion/4.6.26614.01",
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n}",
"ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 01 Aug 2018 07:44:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPFTg9Ql8vfJ9aDBYvbiKwqsbJ39awFcKvwoZTkH51DPl5JYbNPMa+xyfTjNK6yvVtQzMtE5L5PYzg/iSLNu4fXqzvaY1YRsBeq8+A4FHIAfTKLqMdHSfhvhSLQpY2VOQrneMXMZbPM4R7ZYPDq1I"
+ ],
+ "x-ms-correlation-request-id": [
+ "962951a9-2460-43e9-9cbd-a2208a273486"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14473"
+ ],
+ "x-ms-request-id": [
+ "962951a9-2460-43e9-9cbd-a2208a273486"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180801T074450Z:962951a9-2460-43e9-9cbd-a2208a273486"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"Content-Length": [
- "316"
+ "491"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1RpcENycFF1b3RhX2ZlOTM5N2JlLWRhYzItNGMzOS1iMGI4LTg5Yjk2MjE0ZDQxMD9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5f9db3b2-68bd-43ab-8823-f8d9f14a8bc0"
],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:22 GMT"
+ "Wed, 01 Aug 2018 07:44:50 GMT"
],
"Pragma": [
"no-cache"
@@ -105,32 +7839,42 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOWKtwElo/OjtLRt90lcR4ZkaDCiIg/4TvTNhagT1wuf2IPne8zWT0IB3UD3UmMOLClrQrbUAwwcpukRuGxdP5lWqNUUXw/bYR+0qT0vRX6sZOY0L+j4bXWZxbnKabj/YCuR6B124RLyta8EtsMyp"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDNy4YDP2ruf2ui3IJZpmDYAO2Gq9jEkegRIxsDtN49Ig+7lT/2CTViQoX7eKZnwXHBOUYQ6xI46prCeoyjh3T50N3Lc5u/VMGK03fVWuqN2W/KTU4YnlkJuChK/aOE5l8vxtK1VnJslzYHd031dL"
],
"x-ms-correlation-request-id": [
- "d5dcd5a4-0fcb-41a7-8f57-698a8434c991"
+ "0426bd4a-677b-4a10-ad53-ae5e0a66955a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14820"
+ "14472"
],
"x-ms-request-id": [
- "d5dcd5a4-0fcb-41a7-8f57-698a8434c991"
+ "0426bd4a-677b-4a10-ad53-ae5e0a66955a"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195423Z:d5dcd5a4-0fcb-41a7-8f57-698a8434c991"
+ "LOCAL:20180801T074450Z:0426bd4a-677b-4a10-ad53-ae5e0a66955a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "76e76204-5941-4536-a963-e630729ea4c3"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllVMExtensions.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllVMExtensions.json
index 17d7e0dd6eeb..5ff06c9b8d83 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllVMExtensions.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetAllVMExtensions.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7228da76-6367-48a1-98bd-061db0f0c4f3"
+ "01a5622a-9f35-49cb-b682-1c4d0462b9a8"
],
"accept-language": [
"en-US"
@@ -17,10 +17,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/jerff/types/idk/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Failed\"\r\n }\r\n }\r\n]",
+ "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n]",
"ResponseHeaders": {
"Content-Length": [
- "6846"
+ "6864"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,7 +32,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:17 GMT"
+ "Wed, 07 Feb 2018 22:02:41 GMT"
],
"Pragma": [
"no-cache"
@@ -41,19 +41,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmwZ2ah7jmXoLBjsjVjlnaQ9zy2X1n8YpCJvGnadyS6s48V9sMFF1EBPMG8EJlUGztUhaZe03beZ5PIFxQV6IL0221LW58L4kntuUNSqhvMRtRs6qjiITa2BCccQKreFpGgc5lzdJXazgafHwdY8d"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveVA2uwbDAuVYMUSa/mPsvXfCYh8NQR01rekkcHNGCg807CqR9z6O7UfEkTilDugHi8h4zEZKdXXUQ7mi4Q3j/Qcar1liVHCsgtcXqyspzdeSoQq3v/Wh69hazadLB9mj8HdqYgiWcXSXWAILJ+Rr"
],
"x-ms-correlation-request-id": [
- "80085dfd-fe27-4e12-94f8-0b3065d7724d"
+ "5fc6baff-1bd4-4e61-87d8-f2d952381471"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14858"
+ "14606"
],
"x-ms-request-id": [
- "80085dfd-fe27-4e12-94f8-0b3065d7724d"
+ "5fc6baff-1bd4-4e61-87d8-f2d952381471"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195418Z:80085dfd-fe27-4e12-94f8-0b3065d7724d"
+ "LOCAL:20180207T220241Z:5fc6baff-1bd4-4e61-87d8-f2d952381471"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -65,13 +65,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL0JHSW5mby92ZXJzaW9ucy8yLjE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.2.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjIuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2fc4b256-b57d-453e-b5c2-5274b335a386"
+ "4436d973-0392-4ea0-8c3d-c17738e6a894"
],
"accept-language": [
"en-US"
@@ -81,10 +81,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "510"
+ "509"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,7 +96,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:17 GMT"
+ "Wed, 07 Feb 2018 22:02:41 GMT"
],
"Pragma": [
"no-cache"
@@ -105,19 +105,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+2rNtze2icTrADLtwLCVEa4OFIGsJPYM/szAmGCQAATS5TBsCd3CV/Ek7JcvLD6nxldV8pUd9xLaTY1Wn2jysJJ4V9Lp9v/wa0xBVZ2YKJ4DrRkbPmyz2J5HztV6FbffC09tKyIv1zY70RxN2k22"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH9wMy1rAoDx7Y6gYjA71fBe0FMbcHM1rLNgtz87wwel78Vgd4ZIqwuYoJudm53wXR9fJgVRymGEv6Y3+awhVagd8/i9oBynObT+GnU6imTAbhbyKBrvsVW9dP9+R+1k9ZJX384jagDx4n7OuVe5d"
],
"x-ms-correlation-request-id": [
- "a7d0c430-acd9-43dd-b02f-7db352e65a16"
+ "563f07e5-2f7c-4ce4-98f2-758b455f68bc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14857"
+ "14605"
],
"x-ms-request-id": [
- "a7d0c430-acd9-43dd-b02f-7db352e65a16"
+ "563f07e5-2f7c-4ce4-98f2-758b455f68bc"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195418Z:a7d0c430-acd9-43dd-b02f-7db352e65a16"
+ "LOCAL:20180207T220242Z:563f07e5-2f7c-4ce4-98f2-758b455f68bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -129,13 +129,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjg/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL0JHSW5mby92ZXJzaW9ucy8yLjE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eae091c4-995e-45d0-bc19-d91a428fb78a"
+ "fd1d3c41-2304-4f2b-b895-e9696ece3b8d"
],
"accept-language": [
"en-US"
@@ -145,10 +145,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "525"
+ "510"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -160,7 +160,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:18 GMT"
+ "Wed, 07 Feb 2018 22:02:42 GMT"
],
"Pragma": [
"no-cache"
@@ -169,19 +169,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvE5UabP0bm6INQwD7R9DiAJ+AuRoMHQEtxFcj6foX3CrNmpalUUs9kqIT0HLQ1o+xxJaUQVlH/1d8W3QUXkEztqaVaug8b7gBLWZWutbvePr4sfBqrokYNYJ2aN582ZFOanoayy53ceRKWg131eH"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8j5jnQdG/HQadrcFNo8xiEmuvlb6wxy49e14yJyzA8pFmxC59L4WN23PLlc3LkTIH+HHByt6Esc8/nTAK13ibmiRYS50uWSSGjMQCJGK4kue+6Bi2N97UV+knxvTAVWyRqPb4iwEzd+4qoCwDxih"
],
"x-ms-correlation-request-id": [
- "0766b971-a303-42c1-95a3-c6fd85f10c8d"
+ "130b0db7-9441-4092-9a65-784066fe00d8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14856"
+ "14604"
],
"x-ms-request-id": [
- "0766b971-a303-42c1-95a3-c6fd85f10c8d"
+ "130b0db7-9441-4092-9a65-784066fe00d8"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195418Z:0766b971-a303-42c1-95a3-c6fd85f10c8d"
+ "LOCAL:20180207T220242Z:130b0db7-9441-4092-9a65-784066fe00d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,13 +193,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5PU1RDRXh0ZW5zaW9ucy90eXBlcy9DdXN0b21TY3JpcHRGb3JMaW51eC92ZXJzaW9ucy8xLjUuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL0N1c3RvbVNjcmlwdEV4dGVuc2lvbi92ZXJzaW9ucy8xLjg/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4050d470-c38a-463d-b6ab-18c96967d66b"
+ "a9e72b4b-8a46-4b5b-8310-699d19af4417"
],
"accept-language": [
"en-US"
@@ -209,10 +209,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "533"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -224,7 +224,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:18 GMT"
+ "Wed, 07 Feb 2018 22:02:42 GMT"
],
"Pragma": [
"no-cache"
@@ -233,19 +233,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk18HhNwie3pttuCq3dcpVX5whf9FF3ZCdDDcjiPIhGxYqYVkiWgDdxZtqvXt2K0wCWS9/XbOJF2QrnynfyiMykY4WC0pCv3FpSMyVEFDIAuaqfuj9DfXI2DMENC967aC/awZkbB5Q/0s4zDoZEDu"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvW8gcY6+b1aAjzqfwIc8HyLAuBV2kVV+SVxdE/vmhqlpScoZehwPIVDUd9H++5OJuBIr7CSdj7tCJsG6T9TS/FS4+ngYVJO5CYR56PMIH8SM8VYfbKm9WNfjpLV+lk59swtB+k9pVIyzZ/D8/lzLV"
],
"x-ms-correlation-request-id": [
- "adcc9360-c4e1-4611-8a3c-8164fcae3b8b"
+ "99fa2569-32cc-4e15-8669-02ea2e4dc61f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14855"
+ "14603"
],
"x-ms-request-id": [
- "adcc9360-c4e1-4611-8a3c-8164fcae3b8b"
+ "99fa2569-32cc-4e15-8669-02ea2e4dc61f"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195418Z:adcc9360-c4e1-4611-8a3c-8164fcae3b8b"
+ "LOCAL:20180207T220242Z:99fa2569-32cc-4e15-8669-02ea2e4dc61f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -257,13 +257,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5BenVyZS5FeHRlbnNpb25zL3R5cGVzL0RvY2tlckV4dGVuc2lvbi92ZXJzaW9ucy8xLjEuMTYwNjA5MjMzMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5PU1RDRXh0ZW5zaW9ucy90eXBlcy9DdXN0b21TY3JpcHRGb3JMaW51eC92ZXJzaW9ucy8xLjUuMi4wP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7335880a-8147-4bbe-a680-ea5f306f80f4"
+ "712300df-fb06-4338-911f-ab20a189201f"
],
"accept-language": [
"en-US"
@@ -273,10 +273,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "537"
+ "533"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -288,7 +288,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:18 GMT"
+ "Wed, 07 Feb 2018 22:02:42 GMT"
],
"Pragma": [
"no-cache"
@@ -297,19 +297,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHbh7pUiWi0xEk0vuEKsB7eU0zakAxbyMfO7HJS6CvuHsIi92OMRmOBStRZn18b+8H4aGwGICg0RhNhS+in+YL+6PTFS/HUDTrWTK6s/Mj71bSiVNKcHQRc/WelXb32j14TZP/Pqu4iV0qP/uGQGQ"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXfxz3vpXkQZYaMV3JZoiV+6abpRO4W3Cz+0TVI4sCEHijTFUbj5qO1e0uv8qSwSQjbqEthCIVWfiLVP44Vuo/k153cZeS1ZraP9mlvZfEGMNsIaLnCQcn0QaeHdo6rtyq1mCwnfmGfVl/vjtA8Ld"
],
"x-ms-correlation-request-id": [
- "cb8caeef-5a0b-40b8-b3e8-6d5bece1408f"
+ "b1b9e2d8-485f-48d9-86e3-cb0eb5a241cc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14854"
+ "14602"
],
"x-ms-request-id": [
- "cb8caeef-5a0b-40b8-b3e8-6d5bece1408f"
+ "b1b9e2d8-485f-48d9-86e3-cb0eb5a241cc"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195419Z:cb8caeef-5a0b-40b8-b3e8-6d5bece1408f"
+ "LOCAL:20180207T220242Z:b1b9e2d8-485f-48d9-86e3-cb0eb5a241cc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -321,13 +321,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Qb3dlcnNoZWxsL3R5cGVzL0RTQy92ZXJzaW9ucy8yLjE5LjAuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5BenVyZS5FeHRlbnNpb25zL3R5cGVzL0RvY2tlckV4dGVuc2lvbi92ZXJzaW9ucy8xLjEuMTYwNjA5MjMzMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f869705-c7c8-427a-a113-ad2f871dee4b"
+ "3eb64ba6-1cea-4dcc-9202-04d67d987baf"
],
"accept-language": [
"en-US"
@@ -337,10 +337,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "515"
+ "537"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -352,7 +352,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:18 GMT"
+ "Wed, 07 Feb 2018 22:02:42 GMT"
],
"Pragma": [
"no-cache"
@@ -361,19 +361,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDerfq8iNEK1Xvb+wEEPpetRHMW6+bv1LzUrbgM9dBX+xdAXm++yDslk2bmQlxJtbe5rwWFdUX9znp7WH664GG3FRg0yBau3YDtSDPuKSZ2a/5Dhue+XVFXBpKwRal1XDEocLNAY2kBlFTH/PIq7u"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZD9+MGxuyshV0B9Nbx7hmWbQAawlelKk2AeBNW2+UrJzjwOgR8r9r6s4QKfMoSPhBs7i+GCnWCPOhAm1mpYlgkA1tTcoxKEn2W5r40RbYfZ2aXfg95zeQ5ZtxIyUZuTtRHcwVa45lPeX+GdQ9gZl"
],
"x-ms-correlation-request-id": [
- "1c62b3b8-069d-4004-bb85-1a0974a15e34"
+ "9a925e9d-f275-45a9-bdc1-80c46fd07bac"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14853"
+ "14601"
],
"x-ms-request-id": [
- "1c62b3b8-069d-4004-bb85-1a0974a15e34"
+ "9a925e9d-f275-45a9-bdc1-80c46fd07bac"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195419Z:1c62b3b8-069d-4004-bb85-1a0974a15e34"
+ "LOCAL:20180207T220243Z:9a925e9d-f275-45a9-bdc1-80c46fd07bac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -385,13 +385,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5BenVyZS5TZWN1cml0eS90eXBlcy9JYWFTQW50aW1hbHdhcmUvdmVyc2lvbnMvMS40LjAuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Qb3dlcnNoZWxsL3R5cGVzL0RTQy92ZXJzaW9ucy8yLjE5LjAuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec44079a-74d7-4dc4-96cb-fdc725e68934"
+ "8feff80f-bb2c-4c1f-8263-0fb2be902b5b"
],
"accept-language": [
"en-US"
@@ -401,10 +401,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "530"
+ "515"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -416,7 +416,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:18 GMT"
+ "Wed, 07 Feb 2018 22:02:42 GMT"
],
"Pragma": [
"no-cache"
@@ -425,19 +425,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf+jyhWLYPA0o4MqjBiYFuI8CXqvYkS5v1bS8vO8TPdWzEETp6ae1Mr5GduJYNj5vk22eb3lyAUigQHEJgGM8Jt/S0tWG8Qu/yqM6ML1a2hg9FzoV4J2NcqhoKOB6icgfqZju3Kymsl03ly/nwrrE"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2W7uB4WvdMc3xbJIUMtTu1JuCyWtytnWAVjkT0CI1aaAKCiqjZHSz1tVxbaOFY+af9iMZNxdDNc6FV81jCVAagkwRbSu4c2TiIUeOVbIu8Ehk6Dt/IsMRn2cOQsLAAd+xQSscjNgW2syHvVOgxIa"
],
"x-ms-correlation-request-id": [
- "477ecd57-80c6-43ed-bf5c-68175162956c"
+ "cfaeee62-8794-43b0-99aa-1388929a160a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14852"
+ "14600"
],
"x-ms-request-id": [
- "477ecd57-80c6-43ed-bf5c-68175162956c"
+ "cfaeee62-8794-43b0-99aa-1388929a160a"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195419Z:477ecd57-80c6-43ed-bf5c-68175162956c"
+ "LOCAL:20180207T220243Z:cfaeee62-8794-43b0-99aa-1388929a160a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -449,13 +449,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5BenVyZS5EaWFnbm9zdGljcy90eXBlcy9JYWFTRGlhZ25vc3RpY3MvdmVyc2lvbnMvMS4xMC4xLjE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5BenVyZS5TZWN1cml0eS90eXBlcy9JYWFTQW50aW1hbHdhcmUvdmVyc2lvbnMvMS40LjAuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1dd7d847-fb82-4232-ad31-925b33f87bf6"
+ "e9440edd-7943-40f8-8954-f83975d8627d"
],
"accept-language": [
"en-US"
@@ -465,10 +465,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "534"
+ "530"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -480,7 +480,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:19 GMT"
+ "Wed, 07 Feb 2018 22:02:43 GMT"
],
"Pragma": [
"no-cache"
@@ -489,19 +489,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTRFzpWdZ9y4zrjKUAKkjE/6mtoIQ3fE0ZHa9z1vv9JD18n73VHtrJZGsfnj/dp/CEyrS4jPdEbWJd9oiwzJ50YanBV/1jV8lka1GTtyO+Gm/3wLeOfvBzUEHG9tfOWKfwJuWDSSSABuGg2rsvmXs"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu6L1FOK67hUGVvXr92iAhSTXrDGe/k7+0DJTy8D0653Md86Osck2Zoybi9W2jVrOnXINpg3Zhh6w4+RJKzd7veAFouHipXn5YnZ686pe6pghuv5yXYp4qeQkzgjEmey0umTPU5XkeFldNYKqAp10"
],
"x-ms-correlation-request-id": [
- "86f19585-5ded-4929-9ab9-b4f1f8f94bdd"
+ "a088cf52-462e-44c1-a160-9a0ac311ddde"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14851"
+ "14599"
],
"x-ms-request-id": [
- "86f19585-5ded-4929-9ab9-b4f1f8f94bdd"
+ "a088cf52-462e-44c1-a160-9a0ac311ddde"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195419Z:86f19585-5ded-4929-9ab9-b4f1f8f94bdd"
+ "LOCAL:20180207T220243Z:a088cf52-462e-44c1-a160-9a0ac311ddde"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -513,13 +513,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL0pzb25BRERvbWFpbkV4dGVuc2lvbi92ZXJzaW9ucy8xLjM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5BenVyZS5EaWFnbm9zdGljcy90eXBlcy9JYWFTRGlhZ25vc3RpY3MvdmVyc2lvbnMvMS4xMC4xLjE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e180939-f85e-4df6-86f5-a21c4fd8903b"
+ "7c2538ba-ee28-46d5-a470-d7bfb257f2c2"
],
"accept-language": [
"en-US"
@@ -529,10 +529,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "525"
+ "534"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -544,7 +544,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:19 GMT"
+ "Wed, 07 Feb 2018 22:02:43 GMT"
],
"Pragma": [
"no-cache"
@@ -553,19 +553,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpscT6Z8QgZQsc0wT1qYLpPx8Uyrp8amJphN/luylXC4IPzVtJGfigBwXeLzSI+e6MoKZzqcbD2Tb+8XZApmfUaUf4sgs1IBf4scsUllU8BdcjnFgZqUQxhff3/TBTei+gut3suJxI9Xafwq9ZIfC"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwloM+9W7u5EuMq8F67ecwBM0rLY0mR3f0KEJWoSSoWWDu1QUuTQ5ebiRVuHM+Ov46SC0cQ5KuSoCHJpfuUYjJwHNJwLpQsBLg22LyGGoLmT/DoaL55s200nHEn+51KuOOSZYofZMTxFIa3W2bAdz"
],
"x-ms-correlation-request-id": [
- "02fbb744-572c-4353-986e-aff3d19994fe"
+ "bde70133-4035-4080-ac8a-52eb869a539f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14850"
+ "14598"
],
"x-ms-request-id": [
- "02fbb744-572c-4353-986e-aff3d19994fe"
+ "bde70133-4035-4080-ac8a-52eb869a539f"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195419Z:02fbb744-572c-4353-986e-aff3d19994fe"
+ "LOCAL:20180207T220243Z:bde70133-4035-4080-ac8a-52eb869a539f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -577,13 +577,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5FbnRlcnByaXNlQ2xvdWQuTW9uaXRvcmluZy90eXBlcy9NaWNyb3NvZnRNb25pdG9yaW5nQWdlbnQvdmVyc2lvbnMvMS4wLjEwOTAwLjA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL0pzb25BRERvbWFpbkV4dGVuc2lvbi92ZXJzaW9ucy8xLjM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "322d95b0-f030-4f98-9f20-78c276d0b807"
+ "192432b6-dc4d-4054-9504-4ac56e451f0b"
],
"accept-language": [
"en-US"
@@ -593,10 +593,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "555"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -608,7 +608,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:19 GMT"
+ "Wed, 07 Feb 2018 22:02:43 GMT"
],
"Pragma": [
"no-cache"
@@ -617,19 +617,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUG0zEKhIC1TqGzMMhZRItC9qLE++E27VnMKlhA1WtO/W2e4WluCVrJSOufeaG+C8e+55s2VaBFlOr+5W6AsaVCyjG3nF64RnypNWY3SoR8HlLMSoRu60bc1yWteJB0/1oC6WynbHiwXyV2vg0tlm"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvogBmzAVREQW1/MfL+G9ROmPqKu3Yv7YUjL0aSfnCKxm4wcBBOK8rDqZOougx39B1iLbukghTip6L76VeI27q9pkiHqX4cgJI5ZO5MNFyCVWkmoF5nwqfY8LbK0xQ9RcmnRukR/MH66bUSbJn0Q/l"
],
"x-ms-correlation-request-id": [
- "ae22e0fc-e30b-4049-88e7-98ac026d63ae"
+ "ceab10a8-ed73-4d57-a0c7-37bccb821121"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14849"
+ "14597"
],
"x-ms-request-id": [
- "ae22e0fc-e30b-4049-88e7-98ac026d63ae"
+ "ceab10a8-ed73-4d57-a0c7-37bccb821121"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195420Z:ae22e0fc-e30b-4049-88e7-98ac026d63ae"
+ "LOCAL:20180207T220243Z:ceab10a8-ed73-4d57-a0c7-37bccb821121"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -641,13 +641,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5PU1RDRXh0ZW5zaW9ucy90eXBlcy9PU1BhdGNoaW5nRm9yTGludXgvdmVyc2lvbnMvMi4zLjAuMT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5FbnRlcnByaXNlQ2xvdWQuTW9uaXRvcmluZy90eXBlcy9NaWNyb3NvZnRNb25pdG9yaW5nQWdlbnQvdmVyc2lvbnMvMS4wLjEwOTAwLjA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd532ad8-8ef7-45e0-8faf-5855d3267832"
+ "68ef5b9a-9cd5-4711-baab-885319e1b41c"
],
"accept-language": [
"en-US"
@@ -657,10 +657,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "531"
+ "555"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -672,7 +672,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:19 GMT"
+ "Wed, 07 Feb 2018 22:02:43 GMT"
],
"Pragma": [
"no-cache"
@@ -681,19 +681,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/p7Yxx7HAMlK9pBjEhtEpeAfM3reYlf5L+726bprVw7tl5gAru93ZbQM/k4f9EOBd8aKn1QsLsufm4jFBSLEwPnYqqdaKDEUx1BK59ZcK3cX2+eD5LlK6dgUlrgYJmCpA1Obfay0tWFz9ryaaGtQ"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJMNTPnr0pU7BPSdHuxT4k3jKCwvwWwmBY84duJNyUOsXrk1skbgNE0LejSQYHg3xnWs6vPAjlfPAP1VC3+KOxPZF/KVdIiD+zg9kC/+i9IXCuIoCtb/41URC2udRq5m1WiwTLm0NrUQ/olhZMdhZ"
],
"x-ms-correlation-request-id": [
- "66086cd3-0edb-4d37-804e-b287e59a920e"
+ "b32f234a-f579-423b-94de-e7dec0f06607"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14848"
+ "14596"
],
"x-ms-request-id": [
- "66086cd3-0edb-4d37-804e-b287e59a920e"
+ "b32f234a-f579-423b-94de-e7dec0f06607"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195420Z:66086cd3-0edb-4d37-804e-b287e59a920e"
+ "LOCAL:20180207T220244Z:b32f234a-f579-423b-94de-e7dec0f06607"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -705,13 +705,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL1ZNQWNjZXNzQWdlbnQvdmVyc2lvbnMvMi4wP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5PU1RDRXh0ZW5zaW9ucy90eXBlcy9PU1BhdGNoaW5nRm9yTGludXgvdmVyc2lvbnMvMi4zLjAuMT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f6260083-60d2-4d79-a7c1-5b1f3a2e1864"
+ "0b28db33-dfcf-43e4-baf2-6c6dccac2590"
],
"accept-language": [
"en-US"
@@ -721,10 +721,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "517"
+ "531"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -736,7 +736,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:19 GMT"
+ "Wed, 07 Feb 2018 22:02:43 GMT"
],
"Pragma": [
"no-cache"
@@ -745,19 +745,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZy3nMuRHuBsQ2n+qIEiq5IvfO3npjQAiAFcDRnAG7yL0aQljRzWQ2SCI/suuWcwfqplmz6eSGcmpkZps0lW0qLI020P619djCaNg3LeOM9HCyKlg8/Wwl3uBdsEEjUqA1HesUDpssFBjeuZ2EMsM"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9zDv4xmmqzBA6ZROt0d0myjVZ+qEyc7nE2hi9Lu31N9bZrf0D90zt9feAZnlMZFfdC/mkzWyEbjqdMVpYyKD1xXIPgCU+Iwh7ll4HszuqMRLF1swOZW7yzLxEFf1JS7wowsy2DroyDYppyZD3/Bq"
],
"x-ms-correlation-request-id": [
- "daf47c2b-594f-4982-9d95-5076e531a0c6"
+ "64c23708-0942-43aa-8d4f-94fb5f7c2c68"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14847"
+ "14595"
],
"x-ms-request-id": [
- "daf47c2b-594f-4982-9d95-5076e531a0c6"
+ "64c23708-0942-43aa-8d4f-94fb5f7c2c68"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195420Z:daf47c2b-594f-4982-9d95-5076e531a0c6"
+ "LOCAL:20180207T220244Z:64c23708-0942-43aa-8d4f-94fb5f7c2c68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -769,13 +769,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5PU1RDRXh0ZW5zaW9ucy90eXBlcy9WTUFjY2Vzc0ZvckxpbnV4L3ZlcnNpb25zLzEuNC4wLjA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL1ZNQWNjZXNzQWdlbnQvdmVyc2lvbnMvMi4wP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df0ba978-913a-4cef-a910-8157b8fe1f5d"
+ "b6050bf7-fc52-439a-aa63-9af9441c3286"
],
"accept-language": [
"en-US"
@@ -785,10 +785,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "529"
+ "517"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -800,7 +800,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
+ "Wed, 07 Feb 2018 22:02:44 GMT"
],
"Pragma": [
"no-cache"
@@ -809,19 +809,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCEbRbIUc/Lx/hN4JPNiV4IcN9ie6DpH17Cfxp9/0bietAy5lhiNLPM+BHkmxdqet86C5woy3dNkQgzEBm3R7tg0/6xWJ+CkxPCUN69y0VAa/LRxRAkn/4WsqsGE0Ag7r8/95Q910YU/ZM+ewlnAL"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRrcUU1BT9aVvfFj44TdFEYu16Ev5V+UaESHesWfxb+VT64xgEEiGLsDxnmaP62aF3JdPnG2GUrViiI0HGeWN2jnqq02ok0zaOH8rllOqmDe+0tCO5mabFDzkJEQKtCCbOc6QGDGN44uB05CzSmEn"
],
"x-ms-correlation-request-id": [
- "38f6f374-4f14-49d6-8f3d-8220218d7de9"
+ "dd30a8cb-b4f5-400e-9925-900025565970"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14846"
+ "14594"
],
"x-ms-request-id": [
- "38f6f374-4f14-49d6-8f3d-8220218d7de9"
+ "dd30a8cb-b4f5-400e-9925-900025565970"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195420Z:38f6f374-4f14-49d6-8f3d-8220218d7de9"
+ "LOCAL:20180207T220244Z:dd30a8cb-b4f5-400e-9925-900025565970"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -833,13 +833,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/jerff/types/idk/versions/0.1.0?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL2plcmZmL3R5cGVzL2lkay92ZXJzaW9ucy8wLjEuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5PU1RDRXh0ZW5zaW9ucy90eXBlcy9WTUFjY2Vzc0ZvckxpbnV4L3ZlcnNpb25zLzEuNC4wLjA/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c80bc78-c28a-4c7f-9fd9-735e7ccbb7e8"
+ "91ec79b1-121b-4c8d-b528-44c945866ba6"
],
"accept-language": [
"en-US"
@@ -849,10 +849,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/jerff/types/idk/versions/0.1.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "573"
+ "529"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -864,7 +864,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
+ "Wed, 07 Feb 2018 22:02:44 GMT"
],
"Pragma": [
"no-cache"
@@ -873,19 +873,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZsavVGswH8RVCLt8aDGEDhn/U6bNnf9FuIfJNXf7PtBlfVdr0GnoHIQgUwrDRm077raPGJsO+cw/0Q3bWHLy7KXsIFsY3BncqoqoJS1uWMRgDvfZH7VfZdzW8cJ1/iHj5o0uGUIkDC2XyDTmCyRZ"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjY8DFwIL/gse/clnR5qg1bXKdyxyoRmhC3rN+Y9J//OaLeRbHPWodg2sQRD9okXTP+whDNpyOWApVxR5jiEqUAJf+MvhOtlBWh/EJvCBivhL+sS0YKeq+GjVzRiDaIQhsGPDLzAWiQZeSDkZoIJA"
],
"x-ms-correlation-request-id": [
- "2303e806-e098-431e-b530-ac511d4b76b8"
+ "c6630c6d-4b21-4de9-a2cc-4513e866070f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14845"
+ "14593"
],
"x-ms-request-id": [
- "2303e806-e098-431e-b530-ac511d4b76b8"
+ "c6630c6d-4b21-4de9-a2cc-4513e866070f"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:2303e806-e098-431e-b530-ac511d4b76b8"
+ "LOCAL:20180207T220244Z:c6630c6d-4b21-4de9-a2cc-4513e866070f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -899,6 +899,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "8158498d-27b1-4ccf-9aa1-de0f925731e6"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetQuota.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetQuota.json
index f8b4f6fbde59..6aea3c32669e 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetQuota.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetQuota.json
@@ -1,38 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "16eeae55-2a48-4699-83cc-dc9834b4a8b4"
+ "16228340-f9fe-4f7d-8d99-e7978970919a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
+ "FxVersion/4.6.26614.01",
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "328"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:22 GMT"
+ "Wed, 01 Aug 2018 07:44:36 GMT"
],
"Pragma": [
"no-cache"
@@ -41,62 +31,62 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhP30fJDAg5METCNyh997MBQS4UcLuJWtUA221theyCXBo0kX6VekMGMnKcdKTEDSAiiUrMOwhC49Lb3CJpucoKdJ0nwhdFs+zL9xosgEt4Xww2h2nXZM+r6N/WRCDdTymBiZD7OLxEcke2ASpKE2"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJG4y3Tp739C0SfT9cdDv0bXN7H1IIqndWkhmPojznn4NyYNeA4yKd4PCwbejEQDAsXgHxeE2+8qoIq7vNxT/pinQsN5QbKjjNH9GkuiAbBgoq1WMQ3FQd0jJ6bwvDBAhGIYGsuu2AwBvQU8I5wfn"
],
"x-ms-correlation-request-id": [
- "5604fbca-827d-49f8-a123-baf69af614de"
+ "f8678811-0ea9-4a5b-b829-4e198aba166d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14823"
+ "14596"
],
"x-ms-request-id": [
- "5604fbca-827d-49f8-a123-baf69af614de"
+ "f8678811-0ea9-4a5b-b829-4e198aba166d"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195423Z:5604fbca-827d-49f8-a123-baf69af614de"
+ "LOCAL:20180801T074436Z:f8678811-0ea9-4a5b-b829-4e198aba166d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "59478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default%20Quota?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0RlZmF1bHQlMjBRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2FzY2FuY29tcHF1b3RhNzQyP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "031f65df-d902-4201-a3cb-3ec977d430d9"
+ "340a7412-64fb-4877-b51d-67f2a73ed0b0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
+ "FxVersion/4.6.26614.01",
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "316"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:22 GMT"
+ "Wed, 01 Aug 2018 07:44:36 GMT"
],
"Pragma": [
"no-cache"
@@ -105,32 +95,42 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjD0+1DdJx1bfVQThLFav3rE+7dFUk4b/Mv/e6gokPw+hLH8N82PbwMKXbIfutvn6TzjIXClKNp5NNCXCtGO6j5RNfsL/b4iF/DrFkAHbehOD2J9pf+vY1wYvR7eDtSdswGNmHhVMocEc144jmMI4"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx6HZa69ihaVeTx2gpelRlYPfRAvcObWEV+8a800yIkQnC0BW5P28GOjwpwOykEjzxiOlKeaNwcYBZ57tvV7dMsRN0wGjvmCG+QGV/E/3Rasq4u7tpwrPrKx1oo2lplPnVhTBZjEFE0mfWpkuHgyB"
],
"x-ms-correlation-request-id": [
- "cd6cfb0b-f064-4841-b60b-223da9ac348e"
+ "53a759eb-0ead-4362-9511-288fd5bb2daf"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14822"
+ "14595"
],
"x-ms-request-id": [
- "cd6cfb0b-f064-4841-b60b-223da9ac348e"
+ "53a759eb-0ead-4362-9511-288fd5bb2daf"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195423Z:cd6cfb0b-f064-4841-b60b-223da9ac348e"
+ "LOCAL:20180801T074436Z:53a759eb-0ead-4362-9511-288fd5bb2daf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "426"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "76e76204-5941-4536-a963-e630729ea4c3"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetVMExtension.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetVMExtension.json
index 5e3e1f7d8108..41d78c811ff7 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetVMExtension.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestGetVMExtension.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "947b55a6-6635-440f-9903-92da9843438c"
+ "e8fea9ba-6b61-412e-a7af-fc8048513a3e"
],
"accept-language": [
"en-US"
@@ -17,10 +17,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n]",
+ "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n]",
"ResponseHeaders": {
"Content-Length": [
- "6354"
+ "6864"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,7 +32,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:15 GMT"
+ "Wed, 07 Feb 2018 22:01:59 GMT"
],
"Pragma": [
"no-cache"
@@ -41,19 +41,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCCdsLhNvURfh+tRJbPBJLoBcFfPTcSlKigEKREDIHIXPRDarxsSUbTjvwLLRsVc8eKYfbXopwAi+BGH48nPWVHkWtyoAHOmWQ1X0b+I5SQOChTjCKCBzxfyVqpMjpAPeKttfqEXPHlr+EA7EzrvO"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF/CmNzDmh1FdHFaTwaA0qzWHrJopOGkPKrX+Ri5IdUnTOJZlBXclKFGRr4HERfkp8rAuuCx2CUsjRK5Vr9ZuiyppT8odfnVuRWWLZ4LDLL+QadHWI54Z+MK7nf7RTpEMTwcT3cm5N5kw39Ooj+Nj"
],
"x-ms-correlation-request-id": [
- "1cfa73b6-dcc9-4c36-82f6-45e2d953d7ec"
+ "973a3011-4ec0-4814-9075-e10ba48717db"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14860"
+ "14617"
],
"x-ms-request-id": [
- "1cfa73b6-dcc9-4c36-82f6-45e2d953d7ec"
+ "973a3011-4ec0-4814-9075-e10ba48717db"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195416Z:1cfa73b6-dcc9-4c36-82f6-45e2d953d7ec"
+ "LOCAL:20180207T220159Z:973a3011-4ec0-4814-9075-e10ba48717db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -65,13 +65,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC5Db21wdXRlL3R5cGVzL0JHSW5mby92ZXJzaW9ucy8yLjE/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.2.0?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbi9wdWJsaXNoZXJzL01pY3Jvc29mdC90eXBlcy9NaWNyb0V4dGVuc2lvbi92ZXJzaW9ucy8wLjIuMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86b3e40e-b67e-477a-815c-d7ca01870182"
+ "970825d9-15b5-43f6-a194-2de7a7a9494c"
],
"accept-language": [
"en-US"
@@ -81,10 +81,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "510"
+ "509"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,7 +96,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:16 GMT"
+ "Wed, 07 Feb 2018 22:01:59 GMT"
],
"Pragma": [
"no-cache"
@@ -105,19 +105,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNsvbNoVlBgC4nKWnhF/dZSHnL5zcAQJjPKglW+9hntxBRXNz18y5n7Flj9OotrSddB4aJzF+qcDurwCNd0tYnrpkeItXAPesCtwy4M9nAYtBtLPgFtJKqRDEhPn0U8b39NuSADrfdeKWdJyAL3TD"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIxfqezThKHxTwIf0ko7WKlWPJ667OpyZVQyemsr74gZ6syykjFDKrNRTduX/QvHSqOIwVHhh0iC5jw0vq3TMyZtmOwe/f9ZncUcsCxEx289Fxw2rA5iudDgjLKO79lWYl6wF2ZcBtw/7X40h+WOv"
],
"x-ms-correlation-request-id": [
- "682b9e4a-af13-470e-aab2-ad7a7dad4570"
+ "b4f1bf02-976e-4da0-b2e0-5657b4585e4c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14859"
+ "14616"
],
"x-ms-request-id": [
- "682b9e4a-af13-470e-aab2-ad7a7dad4570"
+ "b4f1bf02-976e-4da0-b2e0-5657b4585e4c"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195416Z:682b9e4a-af13-470e-aab2-ad7a7dad4570"
+ "LOCAL:20180207T220200Z:b4f1bf02-976e-4da0-b2e0-5657b4585e4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -131,6 +131,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "8158498d-27b1-4ccf-9aa1-de0f925731e6"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListInvalidLocation.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListInvalidLocation.json
index 49f896348086..507a33a456ea 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListInvalidLocation.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListInvalidLocation.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvdGhpc2lzbm90YXJlYWxwbGFjZS9xdW90YXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvdGhpc2lzbm90YXJlYWxwbGFjZS9xdW90YXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ec14770-52d8-4427-8a4f-97bba691231f"
+ "62052f4d-8724-4ffe-9126-e1c49246e0f1"
],
"accept-language": [
"en-US"
@@ -17,7 +17,7 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"thisisnotarealplace\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"thisisnotarealplace\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"356"
@@ -32,7 +32,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
+ "Wed, 07 Feb 2018 02:22:36 GMT"
],
"Pragma": [
"no-cache"
@@ -41,19 +41,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGUdT0qcrcnQ6mwNzu7aD52NZiB6WBqKTVS3y29ROxajKtwsAzwFvg+p4WLpVfpc6zwm5DR0dqCKOYEQFp8njoVp3fX7krouMm4/3UswKN3SmD9xokh0v8jlMK+f40B5fPilEFQRnyY/WLOz3YGFg"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUzXDmYquICiTIHAvw4kf5b5ysGsPJnl0YHhS/8ZhfNhSJAu8j2qtBzoyp3YZv5VkDPh75i2EvFcCVstq2mtTqFPy40sFoAg3N2L8HYv21ULBtluXJxeeYHaq+mYbrBbGcLk+I80h/FeuP+K4KZqu"
],
"x-ms-correlation-request-id": [
- "117b67d6-95d4-4966-9291-a88bf08fc331"
+ "d7334284-c072-4aa4-a845-7403e909e31b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14844"
+ "14519"
],
"x-ms-request-id": [
- "117b67d6-95d4-4966-9291-a88bf08fc331"
+ "d7334284-c072-4aa4-a845-7403e909e31b"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:117b67d6-95d4-4966-9291-a88bf08fc331"
+ "LOCAL:20180207T022237Z:d7334284-c072-4aa4-a845-7403e909e31b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -67,6 +67,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "8158498d-27b1-4ccf-9aa1-de0f925731e6"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListQuotas.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListQuotas.json
index 93d42164f0de..9a37f02c05b4 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListQuotas.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListQuotas.json
@@ -1,38 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZlNzYyMDQtNTk0MS00NTM2LWE5NjMtZTYzMDcyOWVhNGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDk=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fe7a6a4-6cb2-4737-831f-6304bc2272c9"
+ "5b15db2d-52ac-4749-a546-bb0fd7ef53d7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25211.01",
+ "FxVersion/4.6.26614.01",
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "328"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:22 GMT"
+ "Wed, 01 Aug 2018 07:44:57 GMT"
],
"Pragma": [
"no-cache"
@@ -41,32 +31,42 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXz43kEJ9TeqAuR+But/gVo1tFTDIFEirAhOQZXCuYwGAxmymr/0AkXUawsWX0ao1zgVgbmpq/FbNV5GXDJCX1EJZdGdZR23odm8hpskmTJ/0/uIt076LF3Uvt/jzbCUjhn2EHYIpRmcLs2uw9r6G"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/AEDCFNk9siutmWOWHw2QA7fAJEJE3cIRyDnoVtWQUVWtple20MEr0/Gph2zhGZLPUfFISajjSCNmGesAot60PmQnFyhPYPuEm0naUWGaVhOoVxgseScKrcPtFX/X+A5CW9yaFqpdjVj7+UHfFHF"
],
"x-ms-correlation-request-id": [
- "fb56d51d-d6c9-40ec-ac75-b9ca823076fc"
+ "f795bc79-57f2-464c-94f0-634a3111d434"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14824"
+ "14444"
],
"x-ms-request-id": [
- "fb56d51d-d6c9-40ec-ac75-b9ca823076fc"
+ "f795bc79-57f2-464c-94f0-634a3111d434"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195423Z:fb56d51d-d6c9-40ec-ac75-b9ca823076fc"
+ "LOCAL:20180801T074457Z:f795bc79-57f2-464c-94f0-634a3111d434"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "59478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/ascancompquota742\",\r\n \"name\": \"ascancompquota742\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-153\",\r\n \"name\": \"crp-test-admin-quota-153\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-189\",\r\n \"name\": \"crp-test-admin-quota-189\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-201\",\r\n \"name\": \"crp-test-admin-quota-201\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 3,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-453\",\r\n \"name\": \"crp-test-admin-quota-453\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-534\",\r\n \"name\": \"crp-test-admin-quota-534\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-725\",\r\n \"name\": \"crp-test-admin-quota-725\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-765\",\r\n \"name\": \"crp-test-admin-quota-765\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 0,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/crp-test-admin-quota-936\",\r\n \"name\": \"crp-test-admin-quota-936\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 0,\r\n \"coresLimit\": 5,\r\n \"availabilitySetCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"name\": \"TipCrpQuota_00893b24-cbc8-452a-975b-e41261374ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"name\": \"TipCrpQuota_0173ce2d-3335-4b7d-8921-df1b987e9e05\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"name\": \"TipCrpQuota_0202cabc-cba1-4e75-bf92-f7edfefa22ff\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"name\": \"TipCrpQuota_0296896c-1087-41f0-a477-566cddf060b2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"name\": \"TipCrpQuota_03021274-817a-4d55-8325-abfa56933d27\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"name\": \"TipCrpQuota_05d55ede-4fd2-4a0a-a159-aefb219a1b30\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"name\": \"TipCrpQuota_071d2c11-220c-4133-8905-bfbe7310a3fc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"name\": \"TipCrpQuota_0b193144-3f68-45a8-bfbb-c53d3a3a9309\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"name\": \"TipCrpQuota_0b321c35-91c6-4422-9a56-07834bbeee90\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"name\": \"TipCrpQuota_0b375487-eed1-4647-ae62-f57221f0fc1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"name\": \"TipCrpQuota_0c658728-4831-40b1-829a-883da9593619\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"name\": \"TipCrpQuota_0d565cb1-cbf4-4051-a666-2304ce4df1d2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"name\": \"TipCrpQuota_0fb26c0f-1c45-4d60-9146-3d17f5eb3239\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"name\": \"TipCrpQuota_1300b6f5-1560-4a12-8b01-c1dc854bad98\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"name\": \"TipCrpQuota_15bed36b-6edc-420d-a2ef-fadbd4acd8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"name\": \"TipCrpQuota_15c4445b-8564-4164-9929-b7203bfb29e2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"name\": \"TipCrpQuota_15fa00d6-a5f9-4f2d-a964-a1812d767326\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"name\": \"TipCrpQuota_24a2a365-292f-4022-b651-5fa30324d46d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"name\": \"TipCrpQuota_24dfbf89-79e9-46c4-b99c-08fe5a814421\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"name\": \"TipCrpQuota_2615ccc0-03ca-4a4a-99c0-73125c76e48e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"name\": \"TipCrpQuota_27573aa2-7f26-49e8-895d-e8fb98b63e34\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"name\": \"TipCrpQuota_2f7606b8-6128-461d-8ae6-be919d4ffdca\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"name\": \"TipCrpQuota_32dfcb78-c729-48c7-ada0-a57eecf9c44b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"name\": \"TipCrpQuota_348bb518-8032-421d-840c-22659abe8721\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"name\": \"TipCrpQuota_34f1a129-be57-43d8-82f0-21f9dcdc6385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"name\": \"TipCrpQuota_374ed21b-a9ed-45f6-860e-5dedc2c42fb0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"name\": \"TipCrpQuota_39d9c153-803e-4b27-a41c-bacdf9a1fd4f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"name\": \"TipCrpQuota_3b27bb08-8b2c-48a8-9f47-7d54631a273f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"name\": \"TipCrpQuota_3c0d8f74-71ac-4544-838e-90cf881bd8cf\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"name\": \"TipCrpQuota_3c908a5b-c4f2-41dd-895b-014246c85d1b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"name\": \"TipCrpQuota_3f6fda43-4933-48fa-918d-b8748f61ea9c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"name\": \"TipCrpQuota_3fd28218-7720-440a-aa14-400e14bb0316\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"name\": \"TipCrpQuota_40fb3f11-f0fa-42a6-9092-5e9b4d6c6d75\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"name\": \"TipCrpQuota_41ea095e-3eac-4598-be5a-042edf391e2c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"name\": \"TipCrpQuota_46205cf9-6c51-4329-b39f-18aab04f2ac8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"name\": \"TipCrpQuota_4647dec4-3609-46e7-849d-2ecfebfead1a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"name\": \"TipCrpQuota_47b5e54d-cfce-4c2d-816c-c5b2f2c0469a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"name\": \"TipCrpQuota_47ba6424-8212-4ac6-b7b6-d01a38861ced\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"name\": \"TipCrpQuota_48c9bcf7-8b7c-4b23-9f6e-64f2428a976b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"name\": \"TipCrpQuota_493f8393-807a-41a7-a599-482d70f38adc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"name\": \"TipCrpQuota_49c46f42-e2d7-454a-a20a-55fd3aa0d45c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"name\": \"TipCrpQuota_4a5e0f85-4f0a-4d3f-9e0e-d59afc7e96a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"name\": \"TipCrpQuota_4b6b251b-0561-4035-88b0-ed9be44b8e55\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"name\": \"TipCrpQuota_4b87b6bc-f093-416d-846c-aa7fb29da482\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"name\": \"TipCrpQuota_4b925738-5a38-4e5a-a782-70a82ccddf39\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"name\": \"TipCrpQuota_4b9c1189-63b7-476d-b36d-b0464193f621\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"name\": \"TipCrpQuota_5063f1ec-2dd7-4f4a-ae8a-1fdebdad116f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"name\": \"TipCrpQuota_5085d72b-b909-4b32-b879-3efbd41805ce\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"name\": \"TipCrpQuota_52965093-cb31-4113-be43-6fa45600df8d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"name\": \"TipCrpQuota_58162c84-8f14-4667-a139-d7531ba57593\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"name\": \"TipCrpQuota_5d35156b-09c0-4e59-8b78-204aa50ba2f9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"name\": \"TipCrpQuota_6471ec16-31a5-41a9-b0be-4d7222d5590c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"name\": \"TipCrpQuota_650fe9e5-96b5-4379-ba33-3ef3e627d762\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"name\": \"TipCrpQuota_65c4d852-77ff-4ff7-8a82-da831a1608bc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"name\": \"TipCrpQuota_66388292-2c52-455d-8505-5f7de8765de8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"name\": \"TipCrpQuota_66d9d39e-c21d-4ac8-bbf6-6e8befef6ee4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"name\": \"TipCrpQuota_68a90797-9670-4bf9-9053-e6eb3938fde3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"name\": \"TipCrpQuota_6d345126-9337-40b5-8fb8-eb1384256924\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"name\": \"TipCrpQuota_736615bf-09ff-43bd-92f2-0d526705ec1e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"name\": \"TipCrpQuota_74387d61-8d6d-490f-984a-974c6dccb8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"name\": \"TipCrpQuota_74b6af01-43b4-45dd-8348-b6c20cb22717\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"name\": \"TipCrpQuota_761d7345-4c25-4e8f-b535-e48dbae35405\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"name\": \"TipCrpQuota_768214da-67c0-45e0-b9e7-ec9e0845d5ee\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"name\": \"TipCrpQuota_789588d5-af0b-4ff8-8f04-c79507c1aeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"name\": \"TipCrpQuota_7e39c3b1-1d36-42e5-87e9-10342d72f4a1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"name\": \"TipCrpQuota_80154e44-aee4-48b7-9eea-afe59d84fef8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"name\": \"TipCrpQuota_80c2c866-29d6-47c8-8beb-8a9595d926fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"name\": \"TipCrpQuota_82b54ef8-714c-4046-abcc-58e7bff5237b\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"name\": \"TipCrpQuota_83a3d784-3dcc-43aa-8dfc-a4693b679998\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"name\": \"TipCrpQuota_86c6322f-28d2-4ffa-ab5f-3b4ef232cdd3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"name\": \"TipCrpQuota_8821bcd1-150d-45c1-98ef-78c6d39afd59\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"name\": \"TipCrpQuota_8af43358-a20a-4c0c-9309-3151088899f6\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"name\": \"TipCrpQuota_8dee8157-4afc-40b8-8462-13a5f0b181f3\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"name\": \"TipCrpQuota_8e6b519f-4c0c-4fe7-acdd-1416e415a4a8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"name\": \"TipCrpQuota_8ef0cb0e-d196-4745-94ee-3fc3d94fd0b0\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"name\": \"TipCrpQuota_8f24e85f-969d-4da9-826f-232282faeeae\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"name\": \"TipCrpQuota_92e31d08-dcb1-40ec-99ac-dda2abde2e72\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"name\": \"TipCrpQuota_97fb8b2a-a051-4245-ad6c-28ba82f87feb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"name\": \"TipCrpQuota_9957c76e-7834-47d3-b649-807b6aa04e09\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"name\": \"TipCrpQuota_9a7151bf-5324-41bc-b460-1c071ea72893\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"name\": \"TipCrpQuota_a245424a-4ff3-4e30-8fa2-f4d8168ac73d\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"name\": \"TipCrpQuota_a63cc400-447f-4a2b-8279-d107e847a080\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"name\": \"TipCrpQuota_a6c8b51d-8919-467c-9db0-501a7a522e54\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"name\": \"TipCrpQuota_a96754df-147f-4dff-ac0e-7e6ffcecc385\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"name\": \"TipCrpQuota_aa36fda0-66f4-4768-928f-6598c5a005b1\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"name\": \"TipCrpQuota_b5b33cb7-59a8-4583-9e40-8209f7af830c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"name\": \"TipCrpQuota_b9a74293-f1ac-4bbb-b6d3-b20034073810\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"name\": \"TipCrpQuota_bc5eec9c-879a-4edb-80ec-4d71c13025f4\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"name\": \"TipCrpQuota_c3459fda-b2e2-428d-a64b-507ea7b21e37\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"name\": \"TipCrpQuota_c53ab73e-212d-4697-a03e-5a2d43633b80\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"name\": \"TipCrpQuota_c55b9818-948a-40c0-b914-6ee477c3fabc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"name\": \"TipCrpQuota_c5d7ce95-f056-4f4a-b71d-129e1b3161e8\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"name\": \"TipCrpQuota_ccd564fb-8c59-475e-bf7f-599bf9a92b8a\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"name\": \"TipCrpQuota_ceda3a52-5666-467f-8199-1c3150aa58a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"name\": \"TipCrpQuota_d1e0b010-dddd-477f-8a6b-6e582de34db9\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"name\": \"TipCrpQuota_d300d701-2a36-421b-bd50-b0fa62dedafa\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"name\": \"TipCrpQuota_d6dda056-95f7-468c-bf60-06d98428cc0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"name\": \"TipCrpQuota_d975ffb5-c5d8-4138-b798-606fa852494c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"name\": \"TipCrpQuota_da906c36-a6fb-45dd-a301-34b75f147e0e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"name\": \"TipCrpQuota_dbcc3580-1e16-4fef-b397-78e32c09eb65\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"name\": \"TipCrpQuota_dc83d2df-6819-465e-a8d9-a1d7a252b6cc\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"name\": \"TipCrpQuota_e044e5d6-d826-486d-8d7a-7894aa2cc6c7\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"name\": \"TipCrpQuota_e2aa400c-6a76-47fe-b4ff-0fc75fb1fe74\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"name\": \"TipCrpQuota_e2dbf893-ce22-4606-a3be-3cc16c41d77c\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"name\": \"TipCrpQuota_e5e2b605-ba1b-423f-bcbd-d6c9cc504f41\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"name\": \"TipCrpQuota_eb689093-a783-4e88-a544-c949e7a6a8a2\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"name\": \"TipCrpQuota_eee009e2-c951-4aef-af3e-a65861a74199\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"name\": \"TipCrpQuota_ef0eeaa6-1e88-4646-abdc-cdda120bbd5f\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"name\": \"TipCrpQuota_ef9a1885-588e-4ccf-acf7-289190cdc18e\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"name\": \"TipCrpQuota_f1a1fad9-b3d7-4dbc-86f5-1c9a960cc9ec\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"name\": \"TipCrpQuota_f78b4e7e-ae1d-4c49-ab77-bdd1807b93fb\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76e76204-5941-4536-a963-e630729ea4c3/providers/Microsoft.Compute.Admin/locations/local/quotas/TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"name\": \"TipCrpQuota_fe9397be-dac2-4c39-b0b8-89b96214d410\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "76e76204-5941-4536-a963-e630729ea4c3"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListVMExtensions.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListVMExtensions.json
index 9cc5e65f2955..bcc987fb2638 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListVMExtensions.json
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestListVMExtensions.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension?api-version=2015-12-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODE1ODQ5OGQtMjdiMS00Y2NmLTlhYTEtZGUwZjkyNTczMWU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYXJ0aWZhY3RUeXBlcy9WTUV4dGVuc2lvbj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5886f58-4cae-48c7-aa4b-364f6f539a5b"
+ "fdcb88f0-77b2-44e9-bb14-517a59056c32"
],
"accept-language": [
"en-US"
@@ -17,10 +17,10 @@
"Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
]
},
- "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n]",
+ "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": true,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Windows\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\r\n \"name\": null,\r\n \"type\": \"Microsoft.Compute.Admin/locations/artifactTypes/VMExtension/publishers/types/versions/\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"N/A\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportMultipleExtensions\": false,\r\n \"isSystemExtension\": false,\r\n \"sourceBlob\": null,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n]",
"ResponseHeaders": {
"Content-Length": [
- "6354"
+ "6864"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,7 +32,7 @@
"no-cache"
],
"Date": [
- "Fri, 13 Oct 2017 19:54:15 GMT"
+ "Wed, 07 Feb 2018 22:01:59 GMT"
],
"Pragma": [
"no-cache"
@@ -41,19 +41,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdBiOwf8tR5hs7sF3HEEGicRoj108CwIcLD8UBw7ihRs3rwA8I6ZVGyByNQB2svzE/xT4avQjDiN3lBwD2xnWLQ9Y6YVFja237UvCSETsvLYzMsLWh3LAgd1nW2IGXebM83CuMH3GT5mazO4sXb8Q"
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4yYS/idULleHaI+6rKgi2IzDVtTG7wgT/tNDEoTYgJ5cjf2BtvWJ9cHkB5DBUH99CndxGaI1buFg5YVZvpLp8IOMHX+YIVWBaPw5J5Z8f2gvGZCyLmgnlEBIPLd57kPdXsqo2bOZGG1ysUfhRmjR"
],
"x-ms-correlation-request-id": [
- "8f9fe930-ae95-4c3b-b87f-b2e5a5857a52"
+ "2d14c6e6-d449-4608-994b-e8a7b0e81ffe"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14861"
+ "14615"
],
"x-ms-request-id": [
- "8f9fe930-ae95-4c3b-b87f-b2e5a5857a52"
+ "2d14c6e6-d449-4608-994b-e8a7b0e81ffe"
],
"x-ms-routing-request-id": [
- "LOCAL:20171013T195415Z:8f9fe930-ae95-4c3b-b87f-b2e5a5857a52"
+ "LOCAL:20180207T220200Z:2d14c6e6-d449-4608-994b-e8a7b0e81ffe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -67,6 +67,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
+ "SubscriptionId": "8158498d-27b1-4ccf-9aa1-de0f925731e6"
}
}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestQuotaCreateUpdateDelete.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestQuotaCreateUpdateDelete.json
new file mode 100644
index 000000000000..53e8d9980ad4
--- /dev/null
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestQuotaCreateUpdateDelete.json
@@ -0,0 +1,623 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f43532ff-7b9e-42b8-93f7-bd18656af876"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKAVyp/BTcRitP8fk/udaFvWJDw+E6n1UWejjogpKUhw4UQHztCIWUyqdxPaPGLLpVFgp4p1h4XNd+RskVE3uSfsdYDhcJYtbQfvanTPqCvv1MK4g25dqwYw8fVAcZH964J7Ga8IaFJHSw3PT0daX"
+ ],
+ "x-ms-correlation-request-id": [
+ "d682ddff-1409-4dfc-b424-257eabcd0dec"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "d682ddff-1409-4dfc-b424-257eabcd0dec"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:d682ddff-1409-4dfc-b424-257eabcd0dec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\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 }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ba448b23-aed6-4a19-8381-d707de434431"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "252"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTv53RGj6rrtZRLOfBdldGIjydqyyfZ/jpEY8Rbx5iAeuaJKTUNs65/mVAHWH3OG2OA1PtKwgzq1PsClfA6R4z1lgpVHrpJCGY11kOXuu2/7eV8/pvZDusquy+n3Ls/jrnLdiKp2eUbtHKmZL50JZ"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc6430c3-4a9b-443a-994b-b0685439ed39"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "fc6430c3-4a9b-443a-994b-b0685439ed39"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:fc6430c3-4a9b-443a-994b-b0685439ed39"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 1,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n },\r\n \"location\": \"local\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9d71e06f-40b0-44f2-bea7-b131c238fda3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "276"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqqFVaeq8etq0J2tEGdLy6Lznc9p+CIVhqHiZc5WaJUW5L2/+8sjQ54W043VhH3ODigSGPDDaOkrl8h9b2FY6OsmjuhLeOcP2CV74GXJkp4pBIWvhLwaNPGtOgYFowt9DhL+xvrnE443E5APlbcEN"
+ ],
+ "x-ms-correlation-request-id": [
+ "4bb9a801-8b7a-4cf5-9833-ecef93effbb1"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "4bb9a801-8b7a-4cf5-9833-ecef93effbb1"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:4bb9a801-8b7a-4cf5-9833-ecef93effbb1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 2,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 1,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n },\r\n \"location\": \"local\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f549459-23e1-442c-9362-ce0c978e294c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "276"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhxIdXCCDRNFl637m/hw5y4LscqeJyRWvT06vJTKPR0uCI+ICNd7fzyQOqBoI+uJHtqK+NWbAxDaJfWRJ+KBfT3s9Gizp3ll+cBHzy9cFS5Ge3Rep1CTYO49CmKbnAASLCpoO8hNLKZYALYNocoLj"
+ ],
+ "x-ms-correlation-request-id": [
+ "da889d4b-0c84-448f-99af-12cdcc53a77d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-request-id": [
+ "da889d4b-0c84-448f-99af-12cdcc53a77d"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:da889d4b-0c84-448f-99af-12cdcc53a77d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 2,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 2,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n },\r\n \"location\": \"local\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6ee03e6d-2dde-4e52-ab33-2145c762669f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "276"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvakUnW9uZ0dfjp3KWtirFtlo65mrBmcneq2aGeYAKTVbtJs/HRvUNgOgmvFwRgMQXAY6afiM6XoVbaHJSNty3WEhSs6KfNZwRRkRDaB0DZXna5LOcL1CTXLHoObQzKB5HwTRkxhXlrD19zUnnP6hL"
+ ],
+ "x-ms-correlation-request-id": [
+ "d41efcf1-0961-4204-8509-7e80dc377bf2"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-request-id": [
+ "d41efcf1-0961-4204-8509-7e80dc377bf2"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:d41efcf1-0961-4204-8509-7e80dc377bf2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 2,\r\n \"coresLimit\": 1,\r\n \"availabilitySetCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 2,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n },\r\n \"location\": \"local\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07cc9328-840c-4aa7-9d52-6ea8e9520d4b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "276"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNDiabT8G7DLHa0J/atFPhyqVKHUnueO8kxaBPFebdCXBQfmSG8lE5vKTfWUzEDGHe0zRU5miVpwPC9FLKJ2db9+S3FE9r9sLv/Z7ltshbCL8nkjrl74q1f21dTHfAKV9j2icrs3sXA01mq8miPG9"
+ ],
+ "x-ms-correlation-request-id": [
+ "2598bfe3-4eec-4d25-b410-99c0b4c50936"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-request-id": [
+ "2598bfe3-4eec-4d25-b410-99c0b4c50936"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:2598bfe3-4eec-4d25-b410-99c0b4c50936"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 2,\r\n \"coresLimit\": 2,\r\n \"availabilitySetCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 2,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n },\r\n \"location\": \"local\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6a64c9c-e72c-492a-be14-dbdb7970e21d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "276"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo5weas9NApo1wg4dkeBWnlhjZ3HdKcGIKICoFpKEHE/2lJqpj068B7tNCcZnNtJtkRDE52YqsJphWqXIWeO9u2IiYcipMnD6YCJaShYifiThHwwlHjIIJbmRctRpLakQ7RvfzkiXMKiICrGoozIm"
+ ],
+ "x-ms-correlation-request-id": [
+ "f973137f-42fc-4fd3-a307-fdf25956ff38"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-request-id": [
+ "f973137f-42fc-4fd3-a307-fdf25956ff38"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:f973137f-42fc-4fd3-a307-fdf25956ff38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 2,\r\n \"coresLimit\": 2,\r\n \"availabilitySetCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 2,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 2\r\n },\r\n \"location\": \"local\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ffe5820-7ee3-4315-8ccf-72b2d0a611bf"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "276"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCJt3XNzuU7Myh6pGi+DSTIDxO5I4LFVQnTcITWAPbHXL1Mxe5sij5yyPRa2Ue/8hb3x0Umq3J8Qc505AKgMnJXl0MBeUPsa6MWskMb6F8BzMj0I/CdDzD4pqh8hFHzBdrNNlEBntVjzLhqX7oehy"
+ ],
+ "x-ms-correlation-request-id": [
+ "951054af-f132-43e6-a6ec-9be16ca87cbe"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-request-id": [
+ "951054af-f132-43e6-a6ec-9be16ca87cbe"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232622Z:951054af-f132-43e6-a6ec-9be16ca87cbe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "439"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete\",\r\n \"name\": \"testQuotaCreateUpdateDelete\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 2,\r\n \"coresLimit\": 2,\r\n \"availabilitySetCount\": 2,\r\n \"vmScaleSetCount\": 2,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 2\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/3433a2e6-258d-490e-81d3-7a88ea48d031/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzQzM2EyZTYtMjU4ZC00OTBlLTgxZDMtN2E4OGVhNDhkMDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL3Rlc3RRdW90YUNyZWF0ZVVwZGF0ZURlbGV0ZT9hcGktdmVyc2lvbj0yMDE4LTAyLTA5",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e97ff085-5c02-41e2-9b18-efb3797e632c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.2.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 10 Aug 2018 23:26:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "WWW-Authenticate": [
+ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtwT6pcCkJ78doPkoGVV7nxvnzST/jB9E2PzUASJqz7YDLtuZ9QReHAZWlv61ZE3Hvik8okOBwv1n42PC0j3/Gb+sL5bOiXcNfv4JFlMQB9Fq1tIb2tKxV/A55CaK2owR4lVGVrhVxEz5SoFX/8U2"
+ ],
+ "x-ms-correlation-request-id": [
+ "c435714e-36b7-4ff9-b8f7-e27e2b37a073"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "c435714e-36b7-4ff9-b8f7-e27e2b37a073"
+ ],
+ "x-ms-routing-request-id": [
+ "LOCAL:20180810T232623Z:c435714e-36b7-4ff9-b8f7-e27e2b37a073"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "3433a2e6-258d-490e-81d3-7a88ea48d031"
+ }
+}
\ No newline at end of file
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestUpdateQuota.json b/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestUpdateQuota.json
deleted file mode 100644
index 2a1dc32b39d0..000000000000
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/SessionRecords/ComputeAdminClient/TestUpdateQuota.json
+++ /dev/null
@@ -1,142 +0,0 @@
-{
- "Entries": [
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/UpdateQuota?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1VwZGF0ZVF1b3RhP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "031f65df-d902-4201-a3cb-3ec977d430d9"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"Default Quota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 20,\r\n \"coresLimit\": 50,\r\n \"availabilitySetCount\": 10,\r\n \"vmScaleSetCount\": 20\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "316"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:22 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjD0+1DdJx1bfVQThLFav3rE+7dFUk4b/Mv/e6gokPw+hLH8N82PbwMKXbIfutvn6TzjIXClKNp5NNCXCtGO6j5RNfsL/b4iF/DrFkAHbehOD2J9pf+vY1wYvR7eDtSdswGNmHhVMocEc144jmMI4"
- ],
- "x-ms-correlation-request-id": [
- "cd6cfb0b-f064-4841-b60b-223da9ac348e"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14822"
- ],
- "x-ms-request-id": [
- "cd6cfb0b-f064-4841-b60b-223da9ac348e"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195423Z:cd6cfb0b-f064-4841-b60b-223da9ac348e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/UpdateQuota?api-version=2015-12-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZmMGJiYmUtZDY4ZC00MzE0LThmNjgtODBhODA4YjVhNmVjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1VwZGF0ZVF1b3RhP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 100,\r\n \"coresLimit\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "171"
- ],
- "x-ms-client-request-id": [
- "4613b7b8-9ca9-4276-ba21-e8b073626eed"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.AzureStack.Management.Compute.Admin.ComputeAdminClient/0.1.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ff0bbbe-d68d-4314-8f68-80a808b5a6ec/providers/Microsoft.Compute.Admin/locations/local/quotas/UpdateQuota\",\r\n \"name\": \"UpdateQuota\",\r\n \"type\": \"Microsoft.Compute.Admin/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"virtualMachineCount\": 100,\r\n \"coresLimit\": 100,\r\n \"availabilitySetCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "423"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 13 Oct 2017 19:54:20 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "WWW-Authenticate": [
- "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTar1JNBFJ9WgK7Q8NCKIZwCq91b8PaWoWNYeuAflo66ndu0LDdjTK53g8CTVlBCg+PHNG79K7Zsg/vcHYFgdgsOwhtmQZE5htfhsyiBS6ACM4+iq2TJCIJAK/T7zlgfvhZ7eKxOTtA+aEHUubEzz"
- ],
- "x-ms-correlation-request-id": [
- "7d3c4616-acdb-4e20-b1f4-cd4087b3f647"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
- ],
- "x-ms-request-id": [
- "7d3c4616-acdb-4e20-b1f4-cd4087b3f647"
- ],
- "x-ms-routing-request-id": [
- "LOCAL:20171013T195421Z:7d3c4616-acdb-4e20-b1f4-cd4087b3f647"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ]
- },
- "StatusCode": 200
- }
- ],
- "Names": {},
- "Variables": {
- "SubscriptionId": "0ff0bbbe-d68d-4314-8f68-80a808b5a6ec"
- }
-}
diff --git a/src/StackAdmin/Azs.Compute.Admin/Tests/src/Quota.Tests.ps1 b/src/StackAdmin/Azs.Compute.Admin/Tests/src/Quota.Tests.ps1
index bceb169cf19f..c66f0cbd7775 100644
--- a/src/StackAdmin/Azs.Compute.Admin/Tests/src/Quota.Tests.ps1
+++ b/src/StackAdmin/Azs.Compute.Admin/Tests/src/Quota.Tests.ps1
@@ -18,7 +18,7 @@
.DESCRIPTION
Run AzureStack Compute admin edge gateway tests using either mock client or our client.
- The mock client allows for recording and playback. This allows for offline tests.
+ The mock client allows for recording and playback. This allows for offline tests.
.PARAMETER RunRaw
Run using our client creation path.
@@ -26,13 +26,13 @@
.EXAMPLE
PS C:\> .\src\SubscriberUsageAggregate.Tests.ps1
Describing SubscriberUsageAggregates
- [+] TestListSubscriberUsageAggregates 81ms
- [+] TestGetSubscriberUsageAggregate 73ms
- [+] TestGetAllSubscriberUsageAggregates 66ms
+ [+] TestListSubscriberUsageAggregates 81ms
+ [+] TestGetSubscriberUsageAggregate 73ms
+ [+] TestGetAllSubscriberUsageAggregates 66ms
.NOTES
Author: Jeffrey Robinson
- Copyright: Microsoft
+ Copyright: Microsoft
Date: August 24, 2017
#>
param(
@@ -68,10 +68,12 @@ InModuleScope Azs.Compute.Admin {
$Quota.Type | Should Not Be $null
# Subscriber Usage Aggregate
- $Quota.AvailabilitySetCount | Should Not Be $null
- $Quota.CoresLimit | Should Not Be $null
- $Quota.VirtualMachineCount | Should Not Be $null
- $Quota.VmScaleSetCount | Should Not Be $null
+ $Quota.AvailabilitySetCount | Should Not Be $null
+ $Quota.CoresLimit | Should Not Be $null
+ $Quota.VirtualMachineCount | Should Not Be $null
+ $Quota.VmScaleSetCount | Should Not Be $null
+ $Quota.StandardManagedDiskAndSnapshotSize | Should Not Be $null
+ $Quota.PremiumManagedDiskAndSnapshotSize | Should Not Be $null
}
function AssertSame {
@@ -81,8 +83,7 @@ InModuleScope Azs.Compute.Admin {
)
}
}
-
-
+
It "TestListQuotas" -Skip:$('TestListQuotas' -in $global:SkippedTests) {
$global:TestName = 'TestListQuotas'
$quotas = Get-AzsComputeQuota -Location $global:Location
@@ -92,8 +93,7 @@ InModuleScope Azs.Compute.Admin {
ValidateComputeQuota -Quota $quota
}
}
-
-
+
It "TestGetQuota" -Skip:$('TestGetQuota' -in $global:SkippedTests) {
$global:TestName = 'TestGetQuota'
@@ -107,7 +107,6 @@ InModuleScope Azs.Compute.Admin {
}
}
-
It "TestGetAllQuotas" -Skip:$('TestGetAllQuotas' -in $global:SkippedTests) {
$global:TestName = 'TestGetAllQuotas'
$quotas = Get-AzsComputeQuota -Location $global:Location
@@ -118,62 +117,85 @@ InModuleScope Azs.Compute.Admin {
}
}
-
It "TestCreateQuota" -Skip:$('TestCreateQuota' -in $global:SkippedTests) {
$global:TestName = 'TestCreateQuota'
$quotaNamePrefix = "testQuota"
-
$data = @(
- @(0, 0, 0, 0, 0),
- @(0, 1, 0, 0, 1),
- @(0, 0, 1, 0, 2),
- @(0, 0, 0, 1, 3),
- @(100, 100, 100, 100, 4),
- @(1000, 1000, 1000, 1000, 5)
+ @(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 + $_[4]
- $quota = New-AzsComputeQuota -Location $global:Location -Name $name -AvailabilitySetCount $_[0] -CoresLimit $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3]
- $quota.AvailabilitySetCount | Should be $_[0]
- $quota.CoresLimit | Should be $_[1]
- $quota.VmScaleSetCount | Should be $_[2]
- $quota.VirtualMachineCount | Should be $_[3]
+ $name = $quotaNamePrefix + $_[6]
+ $quota = New-AzsComputeQuota -Location $global:Location -Name $name -AvailabilitySetCount $_[0] -CoresCount $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3] -StandardManagedDiskAndSnapshotSize $_[4] -PremiumManagedDiskAndSnapshotSize $_[5]
+ $quota.AvailabilitySetCount | Should be $_[0]
+ $quota.CoresLimit | Should be $_[1]
+ $quota.VmScaleSetCount | Should be $_[2]
+ $quota.VirtualMachineCount | Should be $_[3]
+ $quota.StandardManagedDiskAndSnapshotSize | Should be $_[4]
+ $quota.PremiumManagedDiskAndSnapshotSize | Should be $_[5]
}
$data | ForEach-Object {
- $name = $quotaNamePrefix + $_[4]
+ $name = $quotaNamePrefix + $_[6]
Remove-AzsComputeQuota -Location $global:Location -Name $name -Force
}
- }
+ # Retry the same tests above with the alias, to ensure that usage of alias is not broken
+ $data | ForEach-Object {
+ $name = $quotaNamePrefix + $_[6]
+ $quota = New-AzsComputeQuota -Location $global:Location -Name $name -AvailabilitySetCount $_[0] -CoresLimit $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3] -StandardManagedDiskAndSnapshotSize $_[4] -PremiumManagedDiskAndSnapshotSize $_[5]
+ $quota.AvailabilitySetCount | Should be $_[0]
+ $quota.CoresLimit | Should be $_[1]
+ $quota.VmScaleSetCount | Should be $_[2]
+ $quota.VirtualMachineCount | Should be $_[3]
+ $quota.StandardManagedDiskAndSnapshotSize | Should be $_[4]
+ $quota.PremiumManagedDiskAndSnapshotSize | Should be $_[5]
+ }
+ $data | ForEach-Object {
+ $name = $quotaNamePrefix + $_[6]
+ Remove-AzsComputeQuota -Location $global:Location -Name $name -Force
+ }
+
+ }
+
# Tests wth Invalid data
It "TestCreateInvalidQuota" -Skip:$('TestCreateInvalidQuota' -in $global:SkippedTests) {
$global:TestName = 'TestCreateInvalidQuota'
$data = @(
- @(-1, 1, 1, 1),
- @(1, -1, 1, 1),
- @(1, 1, -1, 1),
- @(1, 1, 1, -1),
- @(-1, 0, 0, 0),
- @( 0, -1, 0, 0),
- @( 0, 0, -1, 0),
- @( 0, 0, 0, -1),
- @(-1, -1, -1, -1)
+ @(-1, 1, 1, 1, 1, 1),
+ @(1, -1, 1, 1, 1, 1),
+ @(1, 1, -1, 1, 1, 1),
+ @(1, 1, 1, -1, 1, 1),
+ @(1, 1, 1, 1, -1, 1),
+ @(1, 1, 1, 1, 1, -1),
+ @(-1, 0, 0, 0, 0, 0),
+ @( 0, -1, 0, 0, 0, 0),
+ @( 0, 0, -1, 0, 0, 0),
+ @( 0, 0, 0, -1, 0, 0),
+ @( 0, 0, 0, 0, -1, 0),
+ @( 0, 0, 0, 0, 0, -1),
+ @(-1, -1, -1, -1, -1, -1)
)
$name = "myQuota"
$data | ForEach-Object {
{
- New-AzsComputeQuota -Location $global:Location -Name $name -AvailabilitySetCount $_[0] -CoresLimit $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3]
+ New-AzsComputeQuota -Location $global:Location -Name $name -AvailabilitySetCount $_[0] -CoresLimit $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3] -StandardManagedDiskAndSnapshotSize $_[4] -PremiumManagedDiskAndSnapshotSize $_[5]
} | Should Throw
}
}
-
# Apparently CRP will default to a place even if it does not exist
It "TestListInvalidLocation" -Skip:$('TestListInvalidLocation' -in $global:SkippedTests) {
$global:TestName = 'TestListInvalidLocation'
@@ -181,14 +203,12 @@ InModuleScope Azs.Compute.Admin {
$quotas | Should Be $null
}
-
It "TestDeleteNonExistingQuota" -Skip:$('TestDeleteNonExistingQuota' -in $global:SkippedTests) {
$global:TestName = 'TestDeleteNonExistingQuota'
- Remove-AzsComputeQuota -Location $global:Location -Name "thisdoesnotexistandifitdoesoops" -Force
+ {Remove-AzsComputeQuota -Location $global:Location -Name "thisdoesnotexistandifitdoesoops" -Force} | Should Throw "Operation returned an invalid status code 'NotFound'"
}
-
It "TestCreateQuotaOnInvalidLocation" -Skip:$('TestCreateQuotaOnInvalidLocation' -in $global:SkippedTests) {
$global:TestName = 'TestCreateQuotaOnInvalidLocation'
@@ -196,17 +216,19 @@ InModuleScope Azs.Compute.Admin {
$invalidLocation = "thislocationdoesnotexist"
$data = @(
- @(0, 0, 0, 0, 0),
- @(0, 1, 0, 0, 1),
- @(0, 0, 1, 0, 2),
- @(0, 0, 0, 1, 3),
- @(100, 100, 100, 100, 4),
- @(1000, 1000, 1000, 1000, 5)
+ @( 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 + $_[4]
- New-AzsComputeQuota -Location $invalidLocation -Name $name -AvailabilitySetCount $_[0] -CoresLimit $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3] | Should be $null
+ $name = $quotaNamePrefix + $_[6]
+ New-AzsComputeQuota -Location $invalidLocation -Name $name -AvailabilitySetCount $_[0] -CoresLimit $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3] -StandardManagedDiskAndSnapshotSize $_[4] -PremiumManagedDiskAndSnapshotSize $_[5] | Should be $null
Get-AzsComputeQuota -Location $invalidLocation -Name $quota.Name | Should be $null
}
@@ -216,10 +238,28 @@ InModuleScope Azs.Compute.Admin {
Get-AzsComputeQuota -Location | Where-Object { $_.Name -eq $name} | Should be $null
}
}
+
+ # Session recording for this needs a manual update.
+ # Set command would try to do a get before to ensure the quota exists.
+ It "TestQuotaCreateUpdateDelete" -Skip:$('TestQuotaCreateUpdateDelete' -in $global:SkippedTests) {
+ $global:TestName = 'TestQuotaCreateUpdateDelete'
+
+ #
+ # if running against the actual environment enable the following to create first.
+ # New-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 1 -CoresLimit 1 -VmScaleSetCount 1 -VirtualMachineCount 1 -StandardManagedDiskAndSnapshotSize 1 -PremiumManagedDiskAndSnapshotSize 1
+ # Powershell replay playback session grabs the first matching response in the recorded sessions file.
+ # So it always picks the first response. If the test checks for not exist (404), then create and checks for exists, that test would always fail in recoreded sessions.
+ #
+ Set-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 1 -CoresLimit 1 -VmScaleSetCount 1 -VirtualMachineCount 1 -StandardManagedDiskAndSnapshotSize 1 -PremiumManagedDiskAndSnapshotSize 1
+ Set-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 1 -CoresLimit 1 -VmScaleSetCount 1 -VirtualMachineCount 2 -StandardManagedDiskAndSnapshotSize 1 -PremiumManagedDiskAndSnapshotSize 1
+ Set-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 2 -CoresLimit 1 -VmScaleSetCount 1 -VirtualMachineCount 2 -StandardManagedDiskAndSnapshotSize 1 -PremiumManagedDiskAndSnapshotSize 1
+ Set-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 2 -CoresLimit 1 -VmScaleSetCount 2 -VirtualMachineCount 2 -StandardManagedDiskAndSnapshotSize 1 -PremiumManagedDiskAndSnapshotSize 1
+ # validate the CoresCount param for few
+ Set-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 2 -CoresCount 2 -VmScaleSetCount 2 -VirtualMachineCount 2 -StandardManagedDiskAndSnapshotSize 1 -PremiumManagedDiskAndSnapshotSize 1
+ Set-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 2 -CoresCount 2 -VmScaleSetCount 2 -VirtualMachineCount 2 -StandardManagedDiskAndSnapshotSize 2 -PremiumManagedDiskAndSnapshotSize 1
+ Set-AzsComputeQuota -Location $global:Location -Name "testQuotaCreateUpdateDelete" -AvailabilitySetCount 2 -CoresCount 2 -VmScaleSetCount 2 -VirtualMachineCount 2 -StandardManagedDiskAndSnapshotSize 2 -PremiumManagedDiskAndSnapshotSize 2
- It "TestUpdateQuota" -Skip:$('TestUpdateQuota' -in $global:SkippedTests) {
- $global:TestName = 'TestUpdateQuota'
- Set-AzsComputeQuota -Location $global:Location -Name "UpdateQuota" -AvailabilitySetCount 100 -CoresLimit 100 -VmScaleSetCount 100 -VirtualMachineCount 100
}
+
}
}
diff --git a/tools/AzureRM/AzureRM.psm1 b/tools/AzureRM/AzureRM.psm1
index a2ca85de4e85..c64604f126ac 100644
Binary files a/tools/AzureRM/AzureRM.psm1 and b/tools/AzureRM/AzureRM.psm1 differ
diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Reservations.1.9.0-preview.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Reservations.1.9.0-preview.nupkg
new file mode 100644
index 000000000000..94d9a3dd7eca
Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.Reservations.1.9.0-preview.nupkg differ
diff --git a/tools/LocalFeed/Microsoft.Azure.Management.Reservations.1.9.0-preview.symbols.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.Reservations.1.9.0-preview.symbols.nupkg
new file mode 100644
index 000000000000..3f0eb11e1e95
Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.Reservations.1.9.0-preview.symbols.nupkg differ